Skip to content

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

License

Notifications You must be signed in to change notification settings

adlanarifzr/simple_rsa

 
 

Repository files navigation

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.

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • Kotlin 39.5%
  • Dart 35.0%
  • Swift 13.3%
  • Ruby 10.8%
  • Objective-C 1.4%