UNPKG

@hiero-ledger/cryptography

Version:

Cryptographic utilities and primitives for the Hiero SDK

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