密码学
HMAC
Hash-based message authentication code,散列消息认证码。
给定任何散列函数(加密函数),我们可以用 HMAC 获得一个可以通过 key 定制的消息认证码(MAC)。即 code = hmac(key, message, hash_algorithm)。
Hash-based message authentication code,散列消息认证码。
给定任何散列函数(加密函数),我们可以用 HMAC 获得一个可以通过 key 定制的消息认证码(MAC)。即 code = hmac(key, message, hash_algorithm)。