RSAPrivateKey constructor
RSAPrivateKey(
- String pem
Implementation
RSAPrivateKey(String pem) {
key = KeyParser.rsaPrivateKeyFromPEM(
pem,
pkcs1: pem.startsWith(KeyParser.BEGIN_RSA_PRIVATE_KEY),
);
}