parsePrivateKey static method

RSAPrivateKey parsePrivateKey(
  1. String pemKey
)

Parses RSA private key from PEM string

Implementation

static RSAPrivateKey parsePrivateKey(String pemKey) {
  return BasicUtils.CryptoUtils.rsaPrivateKeyFromPem(pemKey);
}