confium-examples 0.5.0

Runnable example binaries demonstrating Confium threshold cryptography
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<html>
<body>
  <h1>Confium Keyless Verify</h1>
  <script type="module">
    import init, { CompositeSignature } from 'https://esm.sh/@confium/confium-wasm@0.4';
    await init();
    // Keyless signatures are composite signatures with a short-lived cert.
    // Verify here using the same composite API.
    console.log('Confium WASM loaded. Use CompositeSignature to verify keyless sigs.');
  </script>
</body>
</html>