Table of Contents

HmacSecureHashAlgorithm512 Constructor

Definition

Namespace
Cuemon.Security.Cryptography
Assemblies
Cuemon.Security.Cryptography.dll
Source
src/Cuemon.Security.Cryptography/HmacSecureHashAlgorithm512.cs

HmacSecureHashAlgorithm512(byte[], Action<ConvertibleOptions>)

Initializes a new instance of the HmacSecureHashAlgorithm512 class.

public HmacSecureHashAlgorithm512(byte[] secret, Action<ConvertibleOptions> setup)

Parameters

secret byte[]

The secret key for HmacSecureHashAlgorithm512 encryption. The key can be any length. However, the recommended size is 128 bytes. If the key is more than 128 bytes long, it is hashed (using SHA-384) to derive a 128-byte key. If it is less than 128 bytes long, it is padded to 128 bytes.

setup Action<ConvertibleOptions>

The ConvertibleOptions which need to be configured.