pike.git/
lib/
modules/
Crypto.pmod/
SCRAM.pike
Branch:
Tag:
Non-build tags
All tags
No tags
2017-11-13
2017-11-13 00:47:34 by Stephen R. van den Berg <srb@cuci.nl>
a1d4acddacff9ffbd64109c33465e0a1c54d2240 (
3
lines) (+
2
/-
1
)
[
Show
|
Annotate
]
Branch:
8.1
Crypto.SCRAM: Avoid specifying the blocksize on HMAC().
23:
} private Crypto.MAC.State HMAC(string(8bit) key) {
-
return H->HMAC(key
, H->digest_size(
)
)
;
+
return H->HMAC(key);
} //! Step 1 in the SCRAM handshake.