Kmac256 Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Kmac256(Byte[], Byte[]) |
Initializes a new instance of the Kmac256 class. |
Kmac256(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>) |
Initializes a new instance of the Kmac256 class. |
Kmac256(Byte[], Byte[])
- Source:
- Kmac256.cs
Initializes a new instance of the Kmac256 class.
public Kmac256 (byte[] key, byte[]? customizationString = default);
new System.Security.Cryptography.Kmac256 : byte[] * byte[] -> System.Security.Cryptography.Kmac256
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 KMAC256. Callers can use the IsSupported property to determine if the platform supports KMAC256.
Applies to
Kmac256(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>)
- Source:
- Kmac256.cs
Initializes a new instance of the Kmac256 class.
public Kmac256 (ReadOnlySpan<byte> key, ReadOnlySpan<byte> customizationString = default);
new System.Security.Cryptography.Kmac256 : ReadOnlySpan<byte> * ReadOnlySpan<byte> -> System.Security.Cryptography.Kmac256
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 KMAC256. Callers can use the IsSupported property to determine if the platform supports KMAC256.