SHA512tDigest class
Implementation of SHA-512/t digest (see FIPS 180-4).
- Implemented types
Constructors
- SHA512tDigest(int digestSize)
Properties
- algorithmName → String
-
Get this algorithm's standard name.
no setteroverride
- byteLength → int
-
Return the size in bytes of the internal buffer the digest applies
it's compression function to.
no setterinherited
- digestSize → int
-
Get this digest's output size in bytes
final
- h1 → Register64
-
finalinherited
- h2 → Register64
-
finalinherited
- h3 → Register64
-
finalinherited
- h4 → Register64
-
finalinherited
- h5 → Register64
-
finalinherited
- h6 → Register64
-
finalinherited
- h7 → Register64
-
finalinherited
- h8 → Register64
-
finalinherited
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
doFinal(
Uint8List out, int outOff) → int -
Store the digest of previously given data in buffer
out
starting at offsetoutOff
. This method returns the size of the digest.override -
finish(
) → void -
inherited
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
process(
Uint8List data) → Uint8List -
Process a whole block of
data
at once, returning the result in a new byte array.inherited -
reset(
) → void - Reset the digest to its original state.
-
toString(
) → String -
A string representation of this object.
inherited
-
update(
Uint8List inp, int inpOff, int len) → void -
Add
len
bytes of data contained ininp
, starting at positioninpOff
ti the digested input.inherited -
updateByte(
int inp) → void -
Add one byte of data to the digested input.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Properties
- factoryConfig → FactoryConfig
-
Intended for internal use.
final