bytes.d.ts 452 B

1234567
  1. import { BytesLike } from '../types/UtilsTypes.js';
  2. export declare function byte2hexStr(byte: number): string;
  3. export declare function bytesToString(arr: BytesLike): string;
  4. export declare function hextoString(hex: string): string;
  5. export declare function byteArray2hexStr(byteArray: BytesLike): string;
  6. export declare function base64DecodeFromString(string64: string): number[];
  7. export declare function base64EncodeToString(bytes: BytesLike): string;