crypto: expose root256 function.

This commit is contained in:
Christopher Jeffrey 2017-07-17 22:24:00 -07:00
parent 76eb6b354b
commit 2fb16a6c97
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -40,6 +40,7 @@ exports.sha1 = digest.sha1;
exports.sha256 = digest.sha256;
exports.hash160 = digest.hash160;
exports.hash256 = digest.hash256;
exports.root256 = digest.root256;
exports.hmac = digest.hmac;
exports.encipher = aes.encipher;