UNPKG

@hashgraph/cryptography

Version:

Cryptographic utilities and primitives for the Hiero SDK

11 lines (10 loc) 239 B
/** * @param {number} count * @returns {Uint8Array} */ export function bytes(count: number): Uint8Array; /** * @param {number} count * @returns {Promise<Uint8Array>} */ export function bytesAsync(count: number): Promise<Uint8Array>;