encodePublicKeyToPKCS8PemString method
Encode the publicKey to PKCS8 pem format https://en.wikipedia.org/wiki/PKCS_8
Implementation
String encodePublicKeyToPKCS8PemString() {
return publicKey!.toPem(toPkcs1: false);
}
Encode the publicKey to PKCS8 pem format https://en.wikipedia.org/wiki/PKCS_8
String encodePublicKeyToPKCS8PemString() {
return publicKey!.toPem(toPkcs1: false);
}