Created
January 26, 2012 17:14
-
-
Save awithy/1683865 to your computer and use it in GitHub Desktop.
makecert
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> makecert -r -pe -a sha1 -n “CN=My Certificate Name” -ss My -len 2048 -sp “Microsoft Enhanced RSA and AES Cryptographic Provider” -sy 24 CertificateFilename.cer | |
> makecert -r -pe -n “CN=My Certificate Name” -sky exchange “CertificateFilename.cer” -sv “CertificateFilename.pvk” | |
> pvk2pfx -pvk “CertificateFilename.pvk” -spc “CertificateFilename.cer” -pfx “CertificateFilename.pfx” -pi CERTIFICATE_PASSWORD |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment