Auth class abstract
A meta class that provides access to all libsodium auth APIs.
This class provides the dart interface for the crypto operations documented in https://libsodium.gitbook.io/doc/secret-key_cryptography/secret-key_authentication. Please refer to that documentation for more details about these APIs.
Properties
Methods
-
call(
{required Uint8List message, required SecureKey key}) → Uint8List - Provides crypto_auth.
-
keygen(
) → SecureKey - Provides crypto_auth_keygen.
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
-
verify(
{required Uint8List tag, required Uint8List message, required SecureKey key}) → bool - Provides crypto_auth_verify.
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited