SHA224Digest class
Implementation of SHA-224 digest.
- Implemented types
Constructors
Properties
- algorithmName → String
-
Get this algorithm's standard name.
final
-
buffer
→ List<
int> -
finalinherited
- bufferOffset ↔ int
-
getter/setter pairinherited
- byteLength → int
-
Return the size in bytes of the internal buffer the digest applies
it's compression function to.
no setteroverride
- digestSize → int
-
Get this digest's output size in bytes
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
-
state
→ List<
int> -
finalinherited
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.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 -
processBlock(
) → void - Process a whole block of data in extender digest.
-
reset(
) → void -
Reset the digest to its original state.
inherited
-
resetState(
) → void - Reset state of digest.
-
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
-
final