KeystoreSignature class
A class for obtaining app hash keys from the platform (Android) and converting them into different hash formats (e.g. SHA, MD5) and encodings (Hex, Base64).
Constructors
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
-
digest(
HashAlgorithm algorithm) → Future< List< Uint8List> > -
Returns the hash keys as raw bytes (Uint8List) for the specified
algorithm. -
digestAsBase64(
HashAlgorithm algorithm) → Future< List< String> > -
Returns the hash keys encoded as Base64 strings for the specified
algorithm. -
digestAsHex(
HashAlgorithm algorithm) → Future< List< String> > -
Returns the hash keys encoded as hexadecimal strings for the specified
algorithm.