diff --git a/src/crypto/cipher/index.js b/src/crypto/cipher/index.js index b69d4467..06efdc8b 100644 --- a/src/crypto/cipher/index.js +++ b/src/crypto/cipher/index.js @@ -18,7 +18,11 @@ module.exports = { /** @see module:crypto/cipher/twofish */ twofish: require('./twofish.js'), /** @see module:crypto/cipher/blowfish */ - blowfish: require('./blowfish.js') + blowfish: require('./blowfish.js'), + /** Not implemented */ + idea: function() { + throw new Error('IDEA symmetric-key algorithm not implemented'); + } }; var aes = require('./aes.js');