Skip to content

Commit

Permalink
Create how-to-generate-self-signed-document-signing-certificate.md
Browse files Browse the repository at this point in the history
  • Loading branch information
nxglabs authored May 21, 2024
1 parent 175eb92 commit 792b48b
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
title: How to generate self-signed document signing certificate?
---
# Steps to generate self-signed document singing certificate for testing OpenSign
```
# execute below command and use passphrase 'opensign'
openssl genrsa -des3 -out ./local_dev.key 2048
openssl req -key ./local_dev.key -new -x509 -days 365 -out ./local_dev.crt
openssl pkcs12 -inkey ./local_dev.key -in ./local_dev.crt -export -out ./local_dev.pfx
openssl base64 -in ./local_dev.pfx -out ./base64_pfx
```

0 comments on commit 792b48b

Please sign in to comment.