RSAPrivateKey constructor

RSAPrivateKey(
  1. String pem
)

Implementation

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