# This directory contains the built WASM module (synor-crypto-wasm) # # To build the WASM module: # docker build -f Dockerfile.wasm -t synor-wasm-builder . # docker run --rm -v $(pwd)/apps/web/src/wasm:/dest synor-wasm-builder sh -c 'cp -r /wasm-output/pkg/* /dest/' # # Or using the build script: # cd crates/synor-crypto-wasm && ./build-wasm.sh # cp -r pkg/* ../../apps/web/src/wasm/ # # The WASM module provides: # - DilithiumSigningKey: Post-quantum signatures # - Keypair: Ed25519 signatures # - Mnemonic: BIP-39 mnemonic generation # - blake3, sha3_256: Hash functions