Freigeben über


KmacXof128 Konstruktoren

Definition

Überlädt

KmacXof128(Byte[], Byte[])

Initialisiert eine neue Instanz der KmacXof128 Klasse.

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

Initialisiert eine neue Instanz der KmacXof128 Klasse.

KmacXof128(Byte[], Byte[])

Quelle:
KmacXof128.cs

Initialisiert eine neue Instanz der KmacXof128 Klasse.

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)

Parameter

key
Byte[]

Der KMAC-Schlüssel.

customizationString
Byte[]

Eine optionale Anpassungszeichenfolge. Der Standardwert ist keine Anpassungszeichenfolge.

Ausnahmen

key ist null.

Fehler beim Erstellen einer Instanz des Algorithmus.

Die Plattform unterstützt KMACXOF128 nicht. Anrufer können die eigenschaft IsSupported verwenden, um festzustellen, ob die Plattform KMACXOF128 unterstützt.

Gilt für:

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

Quelle:
KmacXof128.cs

Initialisiert eine neue Instanz der KmacXof128 Klasse.

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)

Parameter

key
ReadOnlySpan<Byte>

Der KMAC-Schlüssel.

customizationString
ReadOnlySpan<Byte>

Eine optionale Anpassungszeichenfolge. Der Standardwert ist keine Anpassungszeichenfolge.

Ausnahmen

Fehler beim Erstellen einer Instanz des Algorithmus.

Die Plattform unterstützt KMACXOF128 nicht. Anrufer können die eigenschaft IsSupported verwenden, um festzustellen, ob die Plattform KMACXOF128 unterstützt.

Gilt für: