質問

I am trying to convert a PEM file to PKCS12 by using openssl. Looks like the output PKCS12 is v3.0. I need to use it in EMC data domain appliance which only accepts PKCS12 1.0. Any way I can specify to output version 1.0 ?

 openssl pkcs12 -export -in host.pem -inkey host.key -out host.p12
役に立ちましたか?

解決

By looking at the source code I can assure you that OpenSSL supports only PKCS#12 version 3. So there is no way you can specify to output version 1.0 on command line. You would have to change the code.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top