Open xinlake opened 5 months ago
I created an ED25519 PEM key using OpenSSL:
openssl genpkey -algorithm ED25519 -outform PEM -out ed15519.pem
The content of the PEM file may look like this:
-----BEGIN PRIVATE KEY----- MC4CAQAwBQYDK2VwBCIEIIbOW5Du0BZgisHQLHJ7vxwpThZLsUJfK5a2gf/BvfwH -----END PRIVATE KEY-----
Next, how do I sign a message using the cryptography library?
I created an ED25519 PEM key using OpenSSL:
The content of the PEM file may look like this:
Next, how do I sign a message using the cryptography library?