WorkHolic

파이어폭스에서 내보낸 인증서 윈도우로 가져오기

gromet 2018. 4. 26. 10:05
728x90
반응형

참고:

https://superuser.com/questions/1295305/certificate-export-from-firefox-import-to-windows-store


증상: 파이어폭스에서 발급받은 인증서를 내보내기 한 후 윈도우에서 가져오기를 하거나 설치를 하려고 하면 계속 비밀번호가 틀렸다고 하면서 실패한다.


원인: 파이어폭스 버전 문제.

       59버전에서 인증서 내보내기를 했는데 암호화 방식이 달라서 윈도우와 호환이 되지 않는다고 함.

       57버전으로 하면 해결 됨.


다른 처리 방법: openssl 을 이용한 인증서 변경으로 처리

      


openssl.exe pkcs12 -in old_certificate.p12 -out cert.pem -nodes
openssl.exe pkcs12 -export -in cert.pem -out new_certificate.pfx

Import the certificate exorted from FireFox into Windows

Symptom: When importing from Windows or attempting to install the certificate exported from Firefox , it will fail with a wrong password.

Cause: Firefox version issue.

        I've exported a certificate from version 59, but it's incompatible with Windows because of different encryption methods.

        57 version will be resolved.

Another way to handle it: Change certificate with openssl

728x90
SMALL