1.Introduction
AsymmetricCryptography is an extension which you can use to add end-to-end encryption(asymmetric encryption) in your app.It uses asymmetric encryption which ensures that your data is safe.
Latest Version: 3.1
Last Updated: June 30, 2020
2.Blocks
3.Documentation
Generates keys of provided length and raises event ‘KeysGenerated’ with success and response values.
Note: (i) Big key size will consume more ram.It behaves normal upto 4096.
(ii) Key length should be at least 8 times of string length.
For Example :
A key of length 1024 can encrypt a string of length 128.
Returns private key in string format
Returns public key in string format
Tries to encrypt given string with provided public key and returns encrypted text
Tries to decrypt given string with provided private key and returns decrypted text
Asynchronous version of Decrypt method
Asynchronous version of Encrypt method
4.Downloads
Aix can be downloaded from Github Repo
Hope it helps! 