Click or drag to resize

ScramShaAuthenticatorHmac Delegate

An HMAC function as defined in RFC5802, plus the encoding of the data.

Namespace:  MongoDB.Driver.Core.Authentication
Assembly:  MongoDB.Driver.Core (in MongoDB.Driver.Core.dll) Version: 2.13.1-v2-13-x1+a7f8afe27855f38f4f72157d11ba2ae73895502e
Syntax
protected delegate byte[] Hmac(
	UTF8Encoding encoding,
	byte[] data,
	string key
)

Parameters

encoding
Type: System.TextUTF8Encoding
The encoding of the data.
data
Type: SystemByte
The data. Also called "str" in RFC5802.
key
Type: SystemString
The key.

Return Value

Type: Byte
See Also