rsa_encrypt

Creator: coderz1093

Last updated:

Add to Cart

Description:

rsa encrypt

rsa_encrypt 1.0.5 #
RSA encryption package.
Getting Started #
RSA keys generator, String encryption and decryption and String signing.
How it works #
let say Alice want to send a message to Bob. a normal messaging solution would be : Alice write the message and send it to Bob the only problem is that the Message will be transferred in PlainText and every one who intercept the message can read it.
This is were RSA comes to play:


We generate keys( public & private ) for Bob.


If Alice wanted to send a message to Bob she have to encrypt that message with Bob's public keys.


Then the encrypted message will be transferred to Bob and only Bob's private key can decrypt that message.


that way no none can decrypt the message except the owner of that specific private key.
How to use #
in order to use RSA encryption you need to generate 2 keys a public key (used to encrypt a text) and a private key (used to decrypt a text).
Those are the functions and header needed:
import 'package:rsa_encrypt/rsa_encrypt.dart';
import 'package:pointycastle/api.dart' as crypto;

//Future to hold our KeyPair
Future<crypto.AsymmetricKeyPair> futureKeyPair;

//to store the KeyPair once we get data from our future
crypto.AsymmetricKeyPair keyPair;

Future<crypto.AsymmetricKeyPair<crypto.PublicKey, crypto.PrivateKey>> getKeyPair()
{
var helper = RsaKeyHelper();
return helper.computeRSAKeyPair(helper.getSecureRandom());
}
copied to clipboard

Generate KeyPair with the function getKeyPair() store the returned value in futureKeyPair.
Once we get data from the future we can store that data in keyPair (Now we have acces to our private and public key).
In order to view our keys as "a string" we need to use two functions encodePrivateKeyToPemPKCS1(keyPair.privateKey) & encodePublicKeyToPemPKCS1(keyPair.publicKey).
In order to encrypt and decrypt strings you can use two functions


encrypt() : use this function to encrypt a string, pass your string as first argument and a public key as the second one. [IMPORTANT]: this will return a string so you should store the returned value in a variable.
decrypt() : use this function to decrypt an encrypted String, pass your encrypted String as first argument and a private key as the second. this will also return a string dont forget to store it :) .

A youtube video will be available soon!
More on RSA #
The RSA Encryption Algorithm (1 of 2: Computing an Example)
The RSA Encryption Algorithm (2 of 2: Generating the Keys)
How to solve RSA Algorithm Problems?

depends on pointycastle, asn1lib.
thanks to Gonçalo Palma for his Article.

For help getting started with Flutter, view our
online documentation, which offers tutorials,
samples, guidance on mobile development, and a full API reference.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.