In this video, I will show you how to create a self-signed certificate for the purposes of signing a PDF with it.
---
Open SSL ► https://www.openssl.org/docs/
Self-signed certificate article ► https://blogs.oracle.com/blogbypuneet...
Further reading ► https://www.digicert.com/kb/ssl-suppo...
Commands used:
```
openssl req -x509 -newkey rsa:2048 -nodes -keyout myKey.pem -out cert.pem -days 365
openssl pkcs12 -export -out keyStore.p12 -inkey myKey.pem -in cert.pem
```
#openssl #pdf #signature