0 purchases
aes ecb pkcs5 flutter
Null Safety support #
Fork packages flutter_aes_ecb_pkcs5
Solve the null safety support problem
AES 128 pkcs5 only support #
Provide generation of AES keys
Provide encrypt for AES keys
Provide decrypt for AES keys
Android uses java, iOS uses OC development
Usage #
Use this package as a library
Depend on it
Add this to your package's pubspec.yaml file:
dependencies:
aes_ecb_pkcs5_flutter: ^0.1.1
copied to clipboard
Install it You can install packages from the command line:
with Flutter:
$ flutter pub get
copied to clipboard
Alternatively, your editor might support flutter pub get. Check the docs for your editor to learn more.
Import it Now in your Dart code, you can use:
import 'package:aes_ecb_pkcs5_flutter/aes_ecb_pkcs5_flutter.dart';
copied to clipboard
AES Use Example
import 'package:aes_ecb_pkcs5_flutter/aes_ecb_pkcs5_flutter.dart';
void main() {
var data = "{\"username\":\"helloword\"}";
//generate a 16-byte random key
var key = await FlutterAesEcbPkcs5.generateDesKey(128);
print(key);
//encrypt
var encryptText = await FlutterAesEcbPkcs5.encryptString(data, key);
print(encryptText);
//decrypt
var decryptText = await FlutterAesEcbPkcs5.decryptString(encryptText, key);
print(decryptText);
}
copied to clipboard
Run Example Result
data:{"username":"helloword"}
create key:DA8FD2693B652D587EEE51E7ADD9DBB8
encryptText :851544E224F6C1C7F560AB82889DE0DF66EEB6762AB836F4EE13E31100F0EA16
decryptText :{"username":"helloword"}
copied to clipboard
License
The MIT License(http://opensource.org/licenses/MIT)
Please feel free to use and contribute to the development.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.