We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
According to the https://docs.oracle.com/en/java/javase/11/docs/specs/security/standard-names.html#keystore-types specification, the official type is defined as pkcs12. In Enroller.kt it specifically requires the upper case name: if (keyStore.type == "PKCS12"). This should be a case insensitive comparison. There is also a KeyStore.getDefaultType() that returns pkcs12 in lower case
pkcs12
if (keyStore.type == "PKCS12")
KeyStore.getDefaultType()
The text was updated successfully, but these errors were encountered:
key store type is case-insensitive
1d7d4de
fixes #515
122e0ed
Successfully merging a pull request may close this issue.
According to the https://docs.oracle.com/en/java/javase/11/docs/specs/security/standard-names.html#keystore-types specification, the official type is defined as
pkcs12
. In Enroller.kt it specifically requires the upper case name:if (keyStore.type == "PKCS12")
. This should be a case insensitive comparison.There is also a
KeyStore.getDefaultType()
that returnspkcs12
in lower caseThe text was updated successfully, but these errors were encountered: