From 2fb16a6c971868288043ec3e8753ea665678c883 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Mon, 17 Jul 2017 22:24:00 -0700 Subject: [PATCH] crypto: expose root256 function. --- lib/crypto/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/crypto/index.js b/lib/crypto/index.js index 1e2d5389..1112ed0f 100644 --- a/lib/crypto/index.js +++ b/lib/crypto/index.js @@ -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;