RSAEncryptionHelper constructor
Implementation
RSAEncryptionHelper({required String publicKeyPem, String? privateKeyPem})
: publicKey = CryptoUtils.rsaPublicKeyFromPem(publicKeyPem),
privateKey =
privateKeyPem != null
? CryptoUtils.rsaPrivateKeyFromPem(privateKeyPem)
: null;