您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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