Class default

Utility class for managing WebAssembly binary files

Hierarchy

  • default

Constructors

Methods

Constructors

Methods

  • Downloads the WebAssembly binary from MB Bank's website

    Returns Promise<Buffer>

    A promise that resolves to the WebAssembly binary buffer

    Example

    const wasmBinary = await WasmUtils.downloadWasm();
    // Use the WebAssembly binary for encryption
  • Loads WebAssembly binary, either by downloading it or retrieving from disk

    Parameters

    • Optional path: string

      Optional path to save/load the WebAssembly file

    Returns Promise<Buffer>

    A promise that resolves to the WebAssembly binary buffer

    Example

    // Download the WASM file each time
    const wasmData = await WasmUtils.loadWasm();

    // Or save/load it from disk for caching
    const wasmData = await WasmUtils.loadWasm('./cache/main.wasm');

Generated using TypeDoc