選択できるのは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