HMAC.BlockSizeValue Property
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.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.