gitea push
This commit is contained in:
+1
@@ -3,6 +3,7 @@ import { urlAlphabet } from './url-alphabet/index.js'
|
||||
const POOL_SIZE_MULTIPLIER = 128
|
||||
let pool, poolOffset
|
||||
let fillPool = bytes => {
|
||||
if (bytes < 0 || bytes > 1024) throw new RangeError('Wrong ID size')
|
||||
if (!pool || pool.length < bytes) {
|
||||
pool = Buffer.allocUnsafe(bytes * POOL_SIZE_MULTIPLIER)
|
||||
crypto.randomFillSync(pool)
|
||||
|
||||
Reference in New Issue
Block a user