doc: README.md, CHANGELOG.md

This commit is contained in:
cduvray 2023-02-13 08:40:22 +01:00
parent a8b510a03e
commit 857af52271
4 changed files with 30 additions and 18 deletions

15
config/README.md Normal file
View file

@ -0,0 +1,15 @@
# Key generation
## EC (ECDSA) - (algorigthm ES256 - ECDSA using SHA-256)
curve name: prime256v1 (secp256r1, secp384r1)
> openssl ecparam -genkey -noout -name prime256v1 | openssl pkcs8 -topk8 -nocrypt -out ec-private.pem
> openssl ec -in ec-private.pem -pubout -out ec-public-key.pem
## EdDSA - Edwards-curve Digital Signature Algorithm
(Ed25519 - EdDSA signature scheme using SHA-512 (SHA-2) and Curve25519)
> openssl genpkey -algorithm ed25519