Advertisement
Guest User

Untitled

a guest
Apr 26th, 2015
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. Self signed root certificate
  2. makecert -r -pe -n "CN=RootCA" -a sha1 -sky signature -cy authority -sv rootca.pvk rootca.cer
  3.  
  4. Make certificate signed by CA
  5. makecert -cy end -n "CN=example.com" -ic rootca.cer -iv rootca.pvk -a sha1 -sky exchange -pe -sv example.com.pvk example.com.cer
  6.  
  7. Export private and public keys into pxf certificate
  8. pvk2pfx -pvk example.com.pvk -spc example.com.cer -pfx example.com.pfx
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement