Method Crypto.HMAC()->`()()
- Method
`()
Crypto.MAC.State
res =Crypto.HMAC()
()- Description
Calling the HMAC object with a password returns a new object that can perform the actual HMAC hashing. E.g. doing a HMAC hash with MD5 and the password
"bar"
of the string"foo"
would require the codeCrypto.HMAC(Crypto.MD5)("bar")("foo")
.