simple_rsa 0.0.5 copy "simple_rsa: ^0.0.5" to clipboard
simple_rsa: ^0.0.5 copied to clipboard

discontinued

Flutter plugin to encrypt and decrypt string with a public and a private key

Simple RSA Encryption #

Flutter plugin to encrypt, decrypt (RSA/ECB/PCSK1), verify and sign string with a public and a private key

Support for ANDROID and iOS(thanks to adlanarifzr)

Installation #

To use the plugin, add simple_rsa as a dependency in your pubspec.yaml file.

Usage #

First, initialize private and public key. Preferably in BASE64 format.

final publicKey = '...';
final privateKey = '...';

After that, you can encrypt or decyrpt text

let plainText = 'something';
final encryptedText = await encryptString(plainText, utf8.decode(base64.decode(publicKey)));
final decryptedText = await decryptString(encryptedText, utf8.decode(base64.decode(privateKey)));

// Test
print(plainText == decryptedText ? 'true' : 'false');

Or you might want to sign and verify text

let plainText = 'something';
final signedText = await signString(plainText, utf8.decode(base64.decode(privateKey)));
final verified = await verifyString(plainText, signedText, utf8.decode(base64.decode(publicKey)));

// Test
print(verified ? 'true' : 'false');

Example #

See the example application source for a complete sample app using the Simple RSA encryption.

Contributions #

Adlan Arif Zakaria (adlanarifzr) iOS compatibility, sign and verify method.

13
likes
40
pub points
68%
popularity

Publisher

verified publishergdifrancesco.dev

Flutter plugin to encrypt and decrypt string with a public and a private key

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on simple_rsa