Is there a point to the latest additions to the Crypto module besides putting hex-string output directly into crypto functions?
So instead of previously writing
String.hex2string(Crypto.MD5.HMAC(a)(b));
you can now do
Crypto.hash_hmac(Crypto.MD5, 1)(a)(b);