PHP 7.4.33
Preview: test.js Size: 821 B
/var/www/coop-podio-sms.bitkit.dk/httpdocs/node_modules/randomfill/test.js
var test = require('tape')
var crypto = require('./browser')
var Buffer = require('safe-buffer').Buffer
test('sync', function (t) {
  t.test('first', function (t) {
    const buf = Buffer.alloc(10)
    const before = buf.toString('hex')
    crypto.randomFillSync(buf, 5, 5)
    const after = buf.toString('hex')
    t.notEqual(before, after)
    t.equal(before.slice(0, 10), after.slice(0, 10))
    t.end()
  })
})
test('async', function (t) {
  t.test('first', function (t) {
    const buf = Buffer.alloc(10)
    const before = buf.toString('hex')
    crypto.randomFill(buf, 5, 5, function (err, bufa) {
      t.error(err)
      const after = bufa.toString('hex')
      t.notEqual(before, after)
      t.equal(before.slice(0, 10), after.slice(0, 10))
      t.ok(buf === bufa, 'same buffer')
      t.end()
    })
  })
})

Directory Contents

Dirs: 0 × Files: 8
Name Size Perms Modified Actions
319 B lrw-r--r-- 2017-07-27 18:16:29
Edit Download
9 B lrw-r--r-- 2017-07-27 18:16:29
Edit Download
2.93 KB lrw-r--r-- 2017-10-18 15:54:20
Edit Download
266 B lrw-r--r-- 2017-07-27 18:18:21
Edit Download
1.05 KB lrw-r--r-- 2017-07-27 18:16:29
Edit Download
1.72 KB lrw-r--r-- 2024-05-28 16:34:57
Edit Download
459 B lrw-r--r-- 2018-02-16 13:03:07
Edit Download
821 B lrw-r--r-- 2017-10-18 15:52:37
Edit Download
If ZipArchive is unavailable, a .tar will be created (no compression).