UNPKG

@hashgraph/cryptography

Version:

Cryptographic utilities and primitives for the Hiero SDK

11 lines (10 loc) 215 B
/** * @param {string} text * @returns {Uint8Array} */ export function decode(text: string): Uint8Array; /** * @param {Uint8Array} data * @returns {string}; */ export function encode(data: Uint8Array): string;