Dart library to encrypt and sign using openssl.
final message = 'hello world!\n';
final signature = await signRsaPssBase64(privateKey, message);
print(signature);
await verifyRsaPss(publicKey, signature, 'hello world!\n');
TODO
- Convert RSA commands to use stdin/stdout