Difference between revisions of "Windows Certifcate Mangement"

From UVOO Tech Wiki
Jump to navigation Jump to search
Line 9: Line 9:
 
openssl x509 -noout -text -in intermediate.cer
 
openssl x509 -noout -text -in intermediate.cer
 
```
 
```
 +
 +
https://www.c-sharpcorner.com/article/creating-certificate-using-openssl-on-windows-for-ssltls-communication2/

Revision as of 16:55, 26 October 2023

A certificate may contain privatekey. A private key or pkcs12 can only be exported if it is marked exportable unless you hack the registry.

Export & Print

  • Click: Search -> Type: Manage Computer Certificates
  • Export certificate to .cer (binary)
openssl x509 -noout -text -in intermediate.cer

https://www.c-sharpcorner.com/article/creating-certificate-using-openssl-on-windows-for-ssltls-communication2/