creatdParseKey static method

RSAPrivateKey creatdParseKey(
  1. String privateKeyString
)

字符串转成私钥

Implementation

static RSAPrivateKey creatdParseKey(String privateKeyString) {
  final parser = RSAKeyParser();
  return parser.parse(_handlerRsaKey(privateKeyString)) as RSAPrivateKey;
}