EncryptionUtil class

Constructors

EncryptionUtil()

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 Methods

decryptBytes(List<int> encryptedValue, String decryptionKey, {String? ivBase64}) List<int>
decryptKey(String aesKey, String privateKey) String
decryptValue(String encryptedValue, String decryptionKey, {String? ivBase64}) String
encryptBytes(List<int> value, String encryptionKey, {String? ivBase64}) List<int>
encryptKey(String aesKey, String publicKey) String
encryptValue(String value, String encryptionKey, {String? ivBase64}) String
generateAESKey() String
generateIV({int length = 16}) String
getIV(String? ivBase64) → IV
md5CheckSum(String data) String