संपादित करें

इसके माध्यम से साझा किया गया


Kmac128 Constructors

Definition

Overloads

Kmac128(Byte[], Byte[])

Initializes a new instance of the Kmac128 class.

Kmac128(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>)

Initializes a new instance of the Kmac128 class.

Kmac128(Byte[], Byte[])

Source:
Kmac128.cs

Initializes a new instance of the Kmac128 class.

public Kmac128 (byte[] key, byte[]? customizationString = default);
new System.Security.Cryptography.Kmac128 : byte[] * byte[] -> System.Security.Cryptography.Kmac128
Public Sub New (key As Byte(), Optional customizationString As Byte() = Nothing)

Parameters

key
Byte[]

The KMAC key.

customizationString
Byte[]

An optional customization string. The default is no customization string.

Exceptions

key is null.

An error has occurred creating an instance of the algorithm.

The platform does not support KMAC128. Callers can use the IsSupported property to determine if the platform supports KMAC128.

Applies to

Kmac128(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>)

Source:
Kmac128.cs

Initializes a new instance of the Kmac128 class.

public Kmac128 (ReadOnlySpan<byte> key, ReadOnlySpan<byte> customizationString = default);
new System.Security.Cryptography.Kmac128 : ReadOnlySpan<byte> * ReadOnlySpan<byte> -> System.Security.Cryptography.Kmac128
Public Sub New (key As ReadOnlySpan(Of Byte), Optional customizationString As ReadOnlySpan(Of Byte) = Nothing)

Parameters

key
ReadOnlySpan<Byte>

The KMAC key.

customizationString
ReadOnlySpan<Byte>

An optional customization string. The default is no customization string.

Exceptions

An error has occurred creating an instance of the algorithm.

The platform does not support KMAC128. Callers can use the IsSupported property to determine if the platform supports KMAC128.

Applies to