index.js 357 B

1234567
  1. var crypto = require('crypto')
  2. exports.createCipher = exports.Cipher = crypto.createCipher
  3. exports.createCipheriv = exports.Cipheriv = crypto.createCipheriv
  4. exports.createDecipher = exports.Decipher = crypto.createDecipher
  5. exports.createDecipheriv = exports.Decipheriv = crypto.createDecipheriv
  6. exports.listCiphers = exports.getCiphers = crypto.getCiphers