- Implemented types
-
- Implementers
Constructors
-
BlockHashSink(int blockLength, {int? bufferLength})
-
Initialize a new sink for the block hash
Methods
-
$finalize()
→ Uint8List
-
Finalizes the message digest with the remaining message block,
and returns the output as byte array.
-
$process(List<int> chunk, int start, int end)
→ void
-
Processes a chunk of input data
-
$update(List<int> block, [int offset = 0, bool last = false])
→ void
-
Internal method to update the message-digest with a single
block.
-
add(List<int> data, [int start = 0, int? end])
→ void
-
Adds
data to the message-digest.
override
-
close()
→ void
-
Finalizes the message-digest. It calls digest method internally.
override
-
digest()
→ HashDigest
-
Finalizes the message-digest and returns a HashDigest
override
-
noSuchMethod(Invocation invocation)
→ dynamic
-
Invoked when a nonexistent method or property is accessed.
inherited
-
reset()
→ void
-
Resets the current state to start from fresh state
override
-
toString()
→ String
-
A string representation of this object.
inherited