You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 357B

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