Edit

Share via


KmacXof128 Constructors

Definition

Overloads

KmacXof128(Byte[], Byte[])

Initializes a new instance of the KmacXof128 class.

KmacXof128(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>)

Initializes a new instance of the KmacXof128 class.

KmacXof128(Byte[], Byte[])

Source:
KmacXof128.cs

Initializes a new instance of the KmacXof128 class.

public KmacXof128 (byte[] key, byte[]? customizationString = default);
new System.Security.Cryptography.KmacXof128 : byte[] * byte[] -> System.Security.Cryptography.KmacXof128
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 KMACXOF128. Callers can use the IsSupported property to determine if the platform supports KMACXOF128.

Applies to

KmacXof128(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>)

Source:
KmacXof128.cs

Initializes a new instance of the KmacXof128 class.

public KmacXof128 (ReadOnlySpan<byte> key, ReadOnlySpan<byte> customizationString = default);
new System.Security.Cryptography.KmacXof128 : ReadOnlySpan<byte> * ReadOnlySpan<byte> -> System.Security.Cryptography.KmacXof128
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 KMACXOF128. Callers can use the IsSupported property to determine if the platform supports KMACXOF128.

Applies to