I have private key generated by: openssl genpkey -algorithm ed25519 -out private.pem
and it looks like this:
-----BEGIN PRIVATE KEY-----
MC4CAQAwBQYDK2VwBCIEINTZWUEn/Jt6TV9OxGxjD+6CtqKB3MtcJdFAzFUg3fk/
-----END PRIVATE KEY-----
I also have a public key generated by: openssl pkey -in private.pem -out public.pem
and it looks like this:
-----BEGIN PUBLIC KEY-----
MCowBQYDK2VwAyEAPBDjfKgiUSIjVLrvsR+pxw5i9unTpr8S5BL04T13r6w=
-----END PUBLIC KEY-----
And now I don't know, how can I get public and private keys from these PEM's in C#? In my previous question: Generating public ed25519 key with OpenSSL I found out that the public key is in X509/SPKI format and the private key is in PKCS#8 format. But how to get right keys from these formats in C#? I tried with the X509Certificate2 class but got nothing.
Ed25519 can be implemented on .NET with e.g. BouncyCastle and runs on both .NET Framework and .NET Core.
BouncyCastle also provides a way to directly import PEM keys using the
PemReader
class.Example:
with the output: