문제

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