Extract private key from pfx file or certificate store WITHOUT using OpenSSL on Windows

后端 未结 5 2360
孤街浪徒
孤街浪徒 2021-02-19 08:42

As the title suggests I would like to export my private key without using OpenSSL or any other third party tool. If I need a .cer file or .pfx file I c

5条回答
  •  孤城傲影
    2021-02-19 09:17

    If I understand correctly certutil should do it for you.

    certutil -exportPFX -p "ThePasswordToKeyonPFXFile" my [serialNumberOfCert] [fileNameOfPFx]

提交回复
热议问题