HMAC.BlockSizeValue Property

Definition

Gets or sets the block size to use in the hash value.

protected:
 property int BlockSizeValue { int get(); void set(int value); };
protected int BlockSizeValue { get; set; }
member this.BlockSizeValue : int with get, set
Protected Property BlockSizeValue As Integer

Property Value

The block size to use in the hash value.

Remarks

A Hash-based Message Authentication Code (HMAC) uses a hash function where data is hashed by iterating a basic compression function on blocks of data. BlockSizeValue is the byte size of such a block. Its value is 64 bytes.

Applies to