convert ECPrivateKey/ECPublicKey to PEM
Opened this issue · 1 comments
spd-heshuip commented
How convert ECPrivateKey/ECPublicKey to PEM string?
richardheap commented
Pointycastle lacks the ASN.1 encode/decode functions to do this. Typically, you'd create your keys elsewhere (e.g. with openssl) and read from PEM into pointycastle. Check out the rsa_pkcs
package in pub.dev
. You might need to extend it to support EC keys.