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
PKCS#12 format required by openssl 1.1.1 and openssl 3.0 (PKCS12_parse) is different. openssl/openssl#6698
openssl 1.1.1
openssl 3.0
PKCS12_parse
Format 1: openssl 1.1 required: CN = Leaf CN = Root CN = CA #2 CN = CA #1
openssl 1.1
Format 2: openssl 3.0 required: CN = Leaf CN = CA #1 CN = CA #2 CN = Root
This causes compatibility issues in rust-native-rls. sfackler/rust-native-tls#281
rust-native-rls
rust-native-tls officially supports Format 2, when used with openssl 1.1. And in practice, it also supports Format 1, when used with openssl 3.0.
rust-native-tls
Luckily, in our use cases, we only have Leaf and Root. Format 1 and Format 2 are the same. Our users are less likely to be affected.
This is a kind note for users with compatibility issues for PKCS#12.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
PKCS#12 format required by
openssl 1.1.1
andopenssl 3.0
(PKCS12_parse
) is different. openssl/openssl#6698Format 1:
openssl 1.1
required:CN = Leaf
CN = Root
CN = CA #2
CN = CA #1
Format 2:
openssl 3.0
required:CN = Leaf
CN = CA #1
CN = CA #2
CN = Root
This causes compatibility issues in
rust-native-rls
. sfackler/rust-native-tls#281rust-native-tls
officially supports Format 2, when used withopenssl 1.1
.And in practice, it also supports Format 1, when used with
openssl 3.0
.Luckily, in our use cases, we only have Leaf and Root. Format 1 and Format 2 are the same. Our users are less likely to be affected.
This is a kind note for users with compatibility issues for PKCS#12.
The text was updated successfully, but these errors were encountered: