ASH (Application Security Hash) WASM - RFC 8785 compliant request integrity verification with server-signed seals and zero client secrets
npm install @3maem/ash-wasmbash
cargo add ash-wasm
`
Usage
This crate provides WebAssembly bindings for the ash-core library, allowing you to use ASH in browser environments.
`javascript
import init, { canonicalize_json, build_proof } from 'ash-wasm';
await init();
const canonical = canonicalize_json('{"z":1,"a":2}');
console.log(canonical); // {"a":2,"z":1}
``