我正在尝试在MYSQL上复制函数hmacSha512
(https://cryptojs.gitbook.io/docs/#hmac)。
我一直想做的是
SELECT SHA2(CONCAT('@password','@passphrase'), 512) AS `hash`;
不幸的是,它返回的值与以下内容不同:
const password = hmacSha512(
sha512('@password').toString(),
passphrase
).toString();
我在这里做错什么了吗?还是无法在MYSQL上复制-hmacSha512
?