parsePublicKey static method

RSAPublicKey parsePublicKey(
  1. String pemKey
)

Parses RSA public key from PEM string

Implementation

static RSAPublicKey parsePublicKey(String pemKey) {
  return BasicUtils.CryptoUtils.rsaPublicKeyFromPem(pemKey);
}