DartChacha20Poly1305AeadMacAlgorithm class
A pure Dart implementation of AEAD_CHACHA20_POLY1305 message authentication.
Used by Chacha20.poly1305Aead and Xchacha20.poly1305Aead.
- Inheritance
-
- Object
- MacAlgorithm
- DartChacha20Poly1305AeadMacAlgorithm
- Mixed-in types
Constructors
- DartChacha20Poly1305AeadMacAlgorithm({@Deprecated('Do not use') Chacha20? chacha20, @Deprecated('Do not use') Poly1305? poly1305, @Deprecated('Do not use') bool useStaticBuffer = false})
-
Constructs AEAD_CHACHA20_POLY1305.
const
Properties
- hashCode → int
-
The hash code for this object.
no setteroverride
- keyStreamUsed → int
-
Number of bytes in key stream used to initialize the MAC algorithm.
no setteroverride
- macLength → int
-
Number of bytes in the message authentication code.
no setteroverride
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- supportsAad → bool
-
Whether the algorithm supports Associated Authenticated Data (AAD).
no setteroverride
- supportsKeyStreamIndex → bool
-
Whether the algorithm supports key stream index.
no setterinherited
Methods
-
afterData(
) → void -
inherited
-
beforeData(
{required SecretKeyData secretKey, required List< int> nonce, List<int> aad = const []}) → void -
inherited
-
calculateMac(
List< int> bytes, {required SecretKey secretKey, List<int> nonce = const <int>[], List<int> aad = const <int>[]}) → Future<Mac> -
Calculates message authentication code.
inherited
-
calculateMacSync(
List< int> bytes, {required SecretKeyData secretKeyData, required List<int> nonce, List<int> aad = const <int>[]}) → Mac -
Computes a MAC synchronously (unlike calculateMac).
inherited
-
checkParameters(
{int? length, required SecretKey secretKey, required int nonceLength, required int aadLength, required int keyStreamIndex}) → void -
Checks parameters and throws ArgumentError if they are invalid.
inherited
-
newMacSink(
{required SecretKey secretKey, List< int> nonce = const <int>[], List<int> aad = const <int>[]}) → Future<DartMacSinkMixin> -
Constructs a sink for calculating a Mac.
inherited
-
newMacSinkSync(
{required SecretKeyData secretKeyData, List< int> nonce = const <int>[], List<int> aad = const <int>[]}) → DartMacSinkMixin -
Returns DartMacSinkMixin, which can be used synchronously.
override
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
-
toSync(
) → DartChacha20Poly1305AeadMacAlgorithm -
Returns a synchronous implementation of this algorithm.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
override