CryptoUtils class abstract

Constructors

CryptoUtils()

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

base64StringToBytes(String input) Uint8List
Converts a Base 64 encoded String into list of bytes.
bigIntToByteArray(BigInt data) List<int>
convert to bigendian byte array List
bytesToBase64(List<int> bytes, [bool urlSafe = false, bool addLineSeparator = false]) String
Converts a list of bytes into a Base 64 encoded string.
bytesToBigInt(List s) BigInt
bytesToHex(List<int> bytes) String
Convert a list of bytes (for example a message digest) into a hex string.
hexToBytes(String hex) Uint8List
Convert a hexadecimal string to a list of bytes.