Last updated:
0 purchases
ninja openssl
ninja openssl #
Dart library to encrypt and sign using openssl.
Usage #
RSA PSS signature and verification #
final message = 'hello world!\n';
final signature = await signRsaPssBase64(privateKey, message);
print(signature);
await verifyRsaPss(publicKey, signature, 'hello world!\n');
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.