FlutterAesEcbPkcs5 class

AES ECB PKCS5 encrypt & decrypt.

Constructors

FlutterAesEcbPkcs5()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Properties

platformVersion Future<String>
Get device system version.
no setter

Static Methods

decryptString(String txt, String key) Future<String>
Decrypts the txt with the given key.
encryptString(String txt, String key) Future<String>
Encrypts the txt with the given key.
generateDesKey(int length) Future<String>
Used to generate a specific length of AES key with the given length.