diff --git a/src/colony/modules/crypto.js b/src/colony/modules/crypto.js index 541c5d6a..d289f14e 100644 --- a/src/colony/modules/crypto.js +++ b/src/colony/modules/crypto.js @@ -30,10 +30,6 @@ function Hmac (encryption, key) { checkAvailable(); - if (encryption != 'sha1') { - throw new Error('HMAC encryption ' + String(encryption) + ' not supported.'); - } - this.encryption = encryption; this.key = key; this._values = [];