This repository has been archived on 2023-04-09. You can view files and clone it, but cannot push or open issues or pull requests.
chainsafe-bls/test/util.ts

18 lines
464 B
TypeScript
Raw Normal View History

import {randomBytes} from "../src/helpers";
2020-11-20 12:27:30 +00:00
2020-11-25 16:09:44 +00:00
export function fromHexString(hex: string): Uint8Array {
return Buffer.from(hex.replace("0x", ""), "hex");
2020-11-13 21:43:20 +00:00
}
export function toHexString(bytes: Buffer | Uint8Array): string {
return `0x${Buffer.from(bytes).toString("hex")}`;
}
2020-11-20 12:27:30 +00:00
export function randomMessage(): Uint8Array {
return randomBytes(32);
2020-11-20 12:27:30 +00:00
}
export function getN<T>(n: number, getter: () => T): T[] {
return Array.from({length: n}, () => getter());
}