HashDigest class

Constructors

HashDigest(Uint8List bytes)
const

Properties

buffer → ByteBuffer
Returns the byte buffer associated with this digest.
no setter
bytes → Uint8List
final
hashCode → int
The hash code for this object.
no setteroverride
runtimeType → Type
A representation of the runtime type of the object.
no setterinherited

Methods

ascii() → String
The message digest as a string of ASCII alphabets.
base32({bool upper = true, bool padding = true}) → String
The message digest as a Base-32 string.
base64({bool urlSafe = false, bool padding = true}) → String
The message digest as a Base-64 string with no padding.
bigInt({Endian endian = Endian.little}) → BigInt
The message digest as a BigInt.
binary() → String
The message digest as a binary string.
hex([bool upper = false]) → String
The message digest as a hexadecimal string.
isEqual(dynamic other) → bool
Checks if the message digest equals to other.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
number([Endian endian = Endian.big]) → int
Gets 64-bit unsiged integer from the message digest.
octal() → String
The message digest as a octal string.
to(Encoding encoding) → String
Returns the digest in the given encoding
toString() → String
The message digest as a string of hexadecimal digits.
override
utf8() → String
The message digest as a string of UTF-8 alphabets.

Operators

operator ==(Object other) → bool
The equality operator.
override