Click or drag to resize
MimeKit

SaslMechanismScramBaseHash Method

Apply the cryptographic hash function.

Namespace: MailKit.Security
Assembly: MailKit (in MailKit.dll) Version: 4.3.0
Syntax
C#
protected abstract byte[] Hash(
	byte[] str
)

Parameters

str  Byte
The string.

Return Value

Byte
The results of the hash.
Remarks
H(str): Apply the cryptographic hash function to the octet string "str", producing an octet string as a result. The size of the result depends on the hash result size for the hash function in use.
See Also