Sha256: fc3ea15f539d663d8bb770cf5f80570d35f40203e410e9a404cb1035d0a44e4e
Contents?: true
Size: 517 Bytes
Versions: 62
Compression:
Stored size: 517 Bytes
Contents
module.exports = function (crypto, exports) { exports = exports || {}; var ciphers = require('./encrypter')(crypto); exports.createCipher = ciphers.createCipher; exports.createCipheriv = ciphers.createCipheriv; var deciphers = require('./decrypter')(crypto); exports.createDecipher = deciphers.createDecipher; exports.createDecipheriv = deciphers.createDecipheriv; var modes = require('./modes'); function listCiphers () { return Object.keys(modes); } exports.listCiphers = listCiphers; };
Version data entries
62 entries across 62 versions & 1 rubygems