Uname: Linux business55.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
Software: LiteSpeed
PHP version: 8.1.31 [ PHP INFO ] PHP os: Linux
Server Ip: 162.213.251.212
Your Ip: 3.133.137.155
User: allssztx (535) | Group: allssztx (533)
Safe Mode: OFF
Disable Function:
NONE

name : aes.js
var test = require('tape')
var crypto = require('browserify-cipher/browser')
var randomBytes = require('pseudorandombytes')

function runIt (i) {
  crypto.listCiphers().forEach(function (cipher) {
    test('run: ' + i, function (t) {
      t.test('ciphers: ' + cipher, function (t) {
        t.plan(1)
        var data = randomBytes(562)
        var password = randomBytes(20)
        var crypter = crypto.createCipher(cipher, password)
        var decrypter = crypto.createDecipher(cipher, password)
        var out = []
        out.push(decrypter.update(crypter.update(data)))
        out.push(decrypter.update(crypter.final()))
        if (cipher.indexOf('gcm') > -1) {
          decrypter.setAuthTag(crypter.getAuthTag())
        }
        out.push(decrypter.final())
        t.equals(data.toString('hex'), Buffer.concat(out).toString('hex'))
      })
    })
  })
  if (i < 4) {
    setTimeout(runIt, 0, i + 1)
  }
}
runIt(1)
test('getCiphers', function (t) {
  t.plan(1)
  t.ok(crypto.getCiphers().length, 'get ciphers returns an array')
})

test('through crypto browserify works', function (t) {
  t.plan(2)
  var crypto = require('../')
  var cipher = 'aes-128-ctr'
  var data = randomBytes(562)
  var password = randomBytes(20)
  var crypter = crypto.createCipher(cipher, password)
  var decrypter = crypto.createDecipher(cipher, password)
  var out = []
  out.push(decrypter.update(crypter.update(data)))
  out.push(decrypter.update(crypter.final()))
  out.push(decrypter.final())
  t.equals(data.toString('hex'), Buffer.concat(out).toString('hex'))
  t.ok(crypto.getCiphers().length, 'get ciphers returns an array')
})
© 2025 GrazzMean-Shell