ethers.js/src.ts/utils/random-bytes.ts
2018-06-17 16:47:28 -04:00

11 lines
211 B
TypeScript

'use strict';
import { arrayify } from './bytes';
import { randomBytes as _randomBytes } from 'crypto';
export function randomBytes(length: number): Uint8Array {
return arrayify(_randomBytes(length));
}