Last updated:
0 purchases
encryptor
Encryptor #
Super easy Encrypt decrypt high level API for Flutter APPs
This package is a wrapper around encrypt. for more secure encryption with randomIV please check it.
Usage #
var plainText = 'SOME DATA TO ENCRYPT';
var key = 'Key to encrypt and decrpyt the plain text';
var encrypted = Encryptor.encrypt(key, plainText);
var decrypted = Encryptor.decrypt(key, encrypted);
print(encrypted);
print(decrypted);
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.