metamorphic-log 0.1.2

Tamper-evident, append-only transparency log + verification SDK for the Metamorphic platform: RFC 6962/9162 Merkle proofs, C2SP tlog-tiles substrate, witnessed checkpoints, hybrid post-quantum checkpoint signing, and CONIKS-style index privacy. Single source of truth for primitives is metamorphic-crypto.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
//! Browser **verification + monitor** SDK via `wasm-bindgen` (Slice 6).
//!
//! This module is the WASM *personality* of the crate: a thin, logic-free
//! shell over the rlib verification core. Every export base64/text-marshals its
//! arguments and delegates straight to [`crate::proof`], [`crate::checkpoint`],
//! [`crate::note`], [`crate::coniks`], [`crate::commitment`], and
//! [`crate::policy`]. It performs **no** Merkle, signature, VRF, or policy logic
//! of its own — so the verifications it runs and the bytes it computes are
//! identical to the native crate. The cross-language byte-parity KAT
//! (`tests/cross_language.rs` + the `wasm-bindgen-test` suite) locks this.
//!
//! ## Conventions (matching the metamorphic-crypto WASM SDK)
//!
//! - Binary values cross the JS boundary as **standard base64** strings
//!   (padded; matching `btoa`/`atob`). Merkle hashes are 32 bytes, SHA3-512
//!   digests / CONIKS roots are 64 bytes.
//! - Proof audit paths and trusted-key sets cross as **arrays of base64 / text
//!   strings**.
//! - C2SP `checkpoint` / `signed-note` bodies and `VerifierKey`s cross as their
//!   canonical **UTF-8 text** form.
//! - Verification predicates return `true` on success and **throw** a JS
//!   `Error` (carrying the typed [`crate::Error`] message) on any failure —
//!   tamper, forgery, posture mismatch, or malformed input are all rejections.
//!
//! ## Post-quantum posture
//!
//! Unchanged from the rlib: integrity, authentication, and commitments are
//! post-quantum from day one; only CONIKS index-privacy defaults to the
//! classical ECVRF. Nothing here is FIPS-validated and this SDK makes no such
//! claim.

use wasm_bindgen::prelude::*;

use crate::checkpoint::Checkpoint;
use crate::commitment::{Commitment, Opening};
use crate::coniks::{AbsenceProof, LookupProof, Namespace};
use crate::leaf::key_history_v1::Entry;
use crate::note::{SignedNote, VerifierKey};
use crate::policy::{CommitmentHash, NamespacePolicy, SignedPolicy};
use crate::proof::{verify_consistency, verify_inclusion};
use crate::vrf::{Ecvrf, VrfPublicKey};

use metamorphic_crypto::b64;

// ---------------------------------------------------------------------------
// RFC 6962 / 9162 inclusion + consistency (verification + monitor core)
// ---------------------------------------------------------------------------

/// Verify an RFC 6962 inclusion proof.
///
/// `leaf_hash_b64` and `root_b64` are 32-byte SHA-256 hashes; `proof_b64` is the
/// audit path as an array of 32-byte base64 hashes. Returns `true` if the leaf
/// at `index` in a tree of `size` leaves is included under `root`; throws
/// otherwise.
#[wasm_bindgen(js_name = "verifyInclusion")]
pub fn verify_inclusion_wasm(
    index: u64,
    size: u64,
    leaf_hash_b64: &str,
    proof_b64: Vec<String>,
    root_b64: &str,
) -> Result<bool, JsValue> {
    let leaf = decode(leaf_hash_b64)?;
    let proof = decode_proof(&proof_b64)?;
    let root = decode(root_b64)?;
    verify_inclusion(index, size, &leaf, &proof, &root).map_err(to_js)?;
    Ok(true)
}

/// Verify an RFC 6962 consistency proof between two tree sizes — the monitor's
/// anti-equivocation walk.
///
/// `root1_b64` / `root2_b64` are the 32-byte roots at `size1` / `size2`;
/// `proof_b64` is the consistency proof as base64 hashes. Returns `true` if the
/// `size2` tree is a consistent append-only extension of the `size1` tree;
/// throws otherwise.
#[wasm_bindgen(js_name = "verifyConsistency")]
pub fn verify_consistency_wasm(
    size1: u64,
    size2: u64,
    proof_b64: Vec<String>,
    root1_b64: &str,
    root2_b64: &str,
) -> Result<bool, JsValue> {
    let proof = decode_proof(&proof_b64)?;
    let root1 = decode(root1_b64)?;
    let root2 = decode(root2_b64)?;
    verify_consistency(size1, size2, &proof, &root1, &root2).map_err(to_js)?;
    Ok(true)
}

// ---------------------------------------------------------------------------
// Layer-0 canonical leaf: mosslet/key-history/v1 conformance instance
// ---------------------------------------------------------------------------

/// Compute the canonical Layer-0 leaf bytes of a `mosslet/key-history/v1` entry.
///
/// Returns base64 of the canonical bytes. `prev_entry_hash_b64` must be absent
/// (or empty) for the genesis entry and the 64-byte SHA3-512 of the previous
/// entry otherwise. The raw canonical bytes feed both the SHA3-512 entry hash
/// and the RFC 6962 leaf hash.
#[wasm_bindgen(js_name = "keyHistoryV1CanonicalBytes")]
pub fn key_history_v1_canonical_bytes(
    seq: u64,
    ts_ms: u64,
    enc_x25519_b64: &str,
    enc_pq_b64: &str,
    signing_pub_b64: &str,
    prev_entry_hash_b64: Option<String>,
) -> Result<String, JsValue> {
    let entry = build_entry(
        seq,
        ts_ms,
        enc_x25519_b64,
        enc_pq_b64,
        signing_pub_b64,
        prev_entry_hash_b64,
    )?;
    Ok(b64::encode(&entry.canonical_bytes().map_err(to_js)?))
}

/// Compute the SHA3-512 (context-bound) intra-chain entry hash of a
/// `mosslet/key-history/v1` entry. Returns the 64-byte digest as base64.
#[wasm_bindgen(js_name = "keyHistoryV1EntryHash")]
pub fn key_history_v1_entry_hash(
    seq: u64,
    ts_ms: u64,
    enc_x25519_b64: &str,
    enc_pq_b64: &str,
    signing_pub_b64: &str,
    prev_entry_hash_b64: Option<String>,
) -> Result<String, JsValue> {
    let entry = build_entry(
        seq,
        ts_ms,
        enc_x25519_b64,
        enc_pq_b64,
        signing_pub_b64,
        prev_entry_hash_b64,
    )?;
    Ok(b64::encode(&entry.entry_hash().map_err(to_js)?))
}

/// Compute the RFC 6962 leaf hash (`SHA-256(0x00 || canonical)`) of a
/// `mosslet/key-history/v1` entry. Returns the 32-byte hash as base64 — feed it
/// straight into [`verify_inclusion_wasm`].
#[wasm_bindgen(js_name = "keyHistoryV1Rfc6962LeafHash")]
pub fn key_history_v1_rfc6962_leaf_hash(
    seq: u64,
    ts_ms: u64,
    enc_x25519_b64: &str,
    enc_pq_b64: &str,
    signing_pub_b64: &str,
    prev_entry_hash_b64: Option<String>,
) -> Result<String, JsValue> {
    let entry = build_entry(
        seq,
        ts_ms,
        enc_x25519_b64,
        enc_pq_b64,
        signing_pub_b64,
        prev_entry_hash_b64,
    )?;
    Ok(b64::encode(&entry.rfc6962_leaf_hash().map_err(to_js)?))
}

// ---------------------------------------------------------------------------
// C2SP checkpoint / signed-note (classical Ed25519 + additive hybrid PQ)
// ---------------------------------------------------------------------------

/// Verify a C2SP `signed-note` against a set of trusted verifier keys.
///
/// `vkeys` is an array of encoded `VerifierKey` strings (Ed25519 and/or the
/// additive `MetamorphicHybrid` composite). Returns the number of trusted
/// signature lines that verified (always `>= 1` on success); throws if no
/// trusted signature verifies or a known key's line is forged.
#[wasm_bindgen(js_name = "verifySignedNote")]
pub fn verify_signed_note(note_text: &str, vkeys: Vec<String>) -> Result<u32, JsValue> {
    let trusted = parse_vkeys(&vkeys)?;
    let note = SignedNote::parse(note_text).map_err(to_js)?;
    let verified = note.verify(&trusted).map_err(to_js)?;
    Ok(verified.len() as u32)
}

/// Parse and verify a signed checkpoint note, returning the checkpoint head.
///
/// Verifies at least one trusted signature (Ed25519 or hybrid PQ), then returns
/// `{ origin, size, rootB64, extensions }`. Throws on a malformed body or if no
/// trusted signature verifies.
#[wasm_bindgen(js_name = "checkpointVerify")]
pub fn checkpoint_verify(note_text: &str, vkeys: Vec<String>) -> Result<JsValue, JsValue> {
    let trusted = parse_vkeys(&vkeys)?;
    let cp = Checkpoint::from_signed_note(note_text, &trusted).map_err(to_js)?;
    Ok(checkpoint_to_js(&cp))
}

/// Parse an (already-trusted) checkpoint **body** text without signature
/// verification. Returns `{ origin, size, rootB64, extensions }`.
#[wasm_bindgen(js_name = "checkpointParse")]
pub fn checkpoint_parse(body_text: &str) -> Result<JsValue, JsValue> {
    let cp = Checkpoint::parse(body_text).map_err(to_js)?;
    Ok(checkpoint_to_js(&cp))
}

/// Verify inclusion of a leaf against a *verified* signed checkpoint note.
///
/// Parses + verifies the checkpoint (using `vkeys`), then checks the inclusion
/// proof against that checkpoint's size and root. Returns `true`; throws on any
/// failure.
#[wasm_bindgen(js_name = "checkpointVerifyInclusion")]
pub fn checkpoint_verify_inclusion(
    note_text: &str,
    vkeys: Vec<String>,
    leaf_index: u64,
    leaf_hash_b64: &str,
    proof_b64: Vec<String>,
) -> Result<bool, JsValue> {
    let trusted = parse_vkeys(&vkeys)?;
    let cp = Checkpoint::from_signed_note(note_text, &trusted).map_err(to_js)?;
    let leaf = decode(leaf_hash_b64)?;
    let proof = decode_proof(&proof_b64)?;
    cp.verify_inclusion(leaf_index, &leaf, &proof)
        .map_err(to_js)?;
    Ok(true)
}

/// Monitor anti-equivocation: verify two *verified* signed checkpoint notes are
/// consistent append-only views of the same log.
///
/// Both `older_note` and `newer_note` are verified against `vkeys`, then the
/// consistency proof between their sizes/roots is checked. Returns `true`;
/// throws on a malformed note, an untrusted/forged signature, or an
/// inconsistency (equivocation).
#[wasm_bindgen(js_name = "checkpointVerifyConsistency")]
pub fn checkpoint_verify_consistency(
    older_note: &str,
    newer_note: &str,
    vkeys: Vec<String>,
    proof_b64: Vec<String>,
) -> Result<bool, JsValue> {
    let trusted = parse_vkeys(&vkeys)?;
    let older = Checkpoint::from_signed_note(older_note, &trusted).map_err(to_js)?;
    let newer = Checkpoint::from_signed_note(newer_note, &trusted).map_err(to_js)?;
    let proof = decode_proof(&proof_b64)?;
    older.verify_consistency(&newer, &proof).map_err(to_js)?;
    Ok(true)
}

// ---------------------------------------------------------------------------
// CONIKS index privacy: presence / absence proof verification
// ---------------------------------------------------------------------------

/// Verify a CONIKS **presence** (lookup) proof against a directory root.
///
/// Uses the classical ECVRF (`suite 0x03`). `vrf_public_b64` is the VRF public
/// key, `root_b64` the 64-byte directory root, `identity_b64` the looked-up
/// identity bytes, and `proof_b64` the canonical `LookupProof` bytes. Returns
/// the proven value as base64; throws if the proof, VRF output, or root is
/// invalid.
#[wasm_bindgen(js_name = "coniksVerifyLookup")]
pub fn coniks_verify_lookup(
    namespace: &str,
    vrf_public_b64: &str,
    root_b64: &str,
    identity_b64: &str,
    proof_b64: &str,
) -> Result<String, JsValue> {
    let ns = Namespace::parse(namespace).map_err(to_js)?;
    let vrf_public = VrfPublicKey::from_bytes(decode(vrf_public_b64)?);
    let root = decode_array_64(root_b64)?;
    let identity = decode(identity_b64)?;
    let proof = LookupProof::from_bytes(&decode(proof_b64)?).map_err(to_js)?;
    let value = crate::coniks::verify_lookup(&Ecvrf, &ns, &vrf_public, &root, &identity, &proof)
        .map_err(to_js)?;
    Ok(b64::encode(&value))
}

/// Verify a CONIKS **absence** proof against a directory root.
///
/// Same inputs as [`coniks_verify_lookup`] but `proof_b64` is a canonical
/// `AbsenceProof`. Returns `true` if `identity` is provably absent under
/// `root`; throws otherwise.
#[wasm_bindgen(js_name = "coniksVerifyAbsence")]
pub fn coniks_verify_absence(
    namespace: &str,
    vrf_public_b64: &str,
    root_b64: &str,
    identity_b64: &str,
    proof_b64: &str,
) -> Result<bool, JsValue> {
    let ns = Namespace::parse(namespace).map_err(to_js)?;
    let vrf_public = VrfPublicKey::from_bytes(decode(vrf_public_b64)?);
    let root = decode_array_64(root_b64)?;
    let identity = decode(identity_b64)?;
    let proof = AbsenceProof::from_bytes(&decode(proof_b64)?).map_err(to_js)?;
    crate::coniks::verify_absence(&Ecvrf, &ns, &vrf_public, &root, &identity, &proof)
        .map_err(to_js)?;
    Ok(true)
}

/// Verify a SHA3-512 commitment opening.
///
/// `commitment_b64` is the 64-byte commitment, `opening_b64` the 32-byte
/// opening. Returns `true` if `commitment == SHA3-512_with_context(context,
/// opening || value)`; throws otherwise.
#[wasm_bindgen(js_name = "verifyCommitment")]
pub fn verify_commitment_wasm(
    context: &str,
    commitment_b64: &str,
    value_b64: &str,
    opening_b64: &str,
) -> Result<bool, JsValue> {
    let commitment = Commitment::from_bytes(decode_array_64(commitment_b64)?);
    let value = decode(value_b64)?;
    let opening = Opening::from_bytes(decode_array_32(opening_b64)?);
    crate::commitment::verify_commitment(context, &commitment, &value, &opening).map_err(to_js)?;
    Ok(true)
}

// ---------------------------------------------------------------------------
// NamespacePolicy: parse + verify + declared == observed enforcement
// ---------------------------------------------------------------------------

/// Parse and verify a signed namespace policy.
///
/// `signed_b64` is the canonical `SignedPolicy` envelope. Verifies the composite
/// signature binds the policy under `<namespace>/namespace-policy/v1`, then
/// returns the declared posture as
/// `{ namespace, policySchemaVersion, securityLevel, checkpointSuite,
/// commitmentHash, vrfMode, effectiveFrom, createdAt, policyHashB64,
/// rfc6962LeafHashB64 }`. Throws on a malformed envelope or invalid signature.
#[wasm_bindgen(js_name = "signedPolicyVerify")]
pub fn signed_policy_verify(signed_b64: &str) -> Result<JsValue, JsValue> {
    let signed = SignedPolicy::parse(&decode(signed_b64)?).map_err(to_js)?;
    let policy = signed.verify().map_err(to_js)?;
    policy_to_js(policy)
}

/// Enforce **declared == observed** for an observed checkpoint signing key.
///
/// Verifies the signed policy, then maps `public_key_b64` to its
/// `(Suite, SignatureLevel)` posture via the metamorphic-crypto opaque accessor
/// and compares it to the declared checkpoint posture. Returns `true` on match;
/// throws on a posture mismatch.
#[wasm_bindgen(js_name = "policyEnforceCheckpointSigningKey")]
pub fn policy_enforce_checkpoint_signing_key(
    signed_b64: &str,
    public_key_b64: &str,
) -> Result<bool, JsValue> {
    let policy = verified_policy(signed_b64)?;
    policy
        .enforce_checkpoint_signing_key(public_key_b64)
        .map_err(to_js)?;
    Ok(true)
}

/// Enforce **declared == observed** for an observed checkpoint signature.
#[wasm_bindgen(js_name = "policyEnforceCheckpointSignature")]
pub fn policy_enforce_checkpoint_signature(
    signed_b64: &str,
    signature_b64: &str,
) -> Result<bool, JsValue> {
    let policy = verified_policy(signed_b64)?;
    policy
        .enforce_checkpoint_signature(signature_b64)
        .map_err(to_js)?;
    Ok(true)
}

/// Enforce **declared == observed** for an observed CONIKS VRF `suite_id`.
#[wasm_bindgen(js_name = "policyEnforceVrfSuiteId")]
pub fn policy_enforce_vrf_suite_id(
    signed_b64: &str,
    observed_suite_id: u8,
) -> Result<bool, JsValue> {
    let policy = verified_policy(signed_b64)?;
    policy
        .enforce_vrf_suite_id(observed_suite_id)
        .map_err(to_js)?;
    Ok(true)
}

/// Enforce **declared == observed** for an observed commitment-hash parameter.
///
/// `observed` is `"sha3_256"` or `"sha3_512"`.
#[wasm_bindgen(js_name = "policyEnforceCommitmentHash")]
pub fn policy_enforce_commitment_hash(signed_b64: &str, observed: &str) -> Result<bool, JsValue> {
    let policy = verified_policy(signed_b64)?;
    policy
        .enforce_commitment_hash(parse_commitment_hash(observed)?)
        .map_err(to_js)?;
    Ok(true)
}

// ---------------------------------------------------------------------------
// Internal helpers (logic-free marshalling only)
// ---------------------------------------------------------------------------

/// Decode a base64 string into bytes, surfacing decode errors as JS exceptions.
fn decode(s: &str) -> Result<Vec<u8>, JsValue> {
    b64::decode(s).map_err(|e| JsValue::from_str(&format!("base64 decode error: {e}")))
}

/// Decode an array of base64 strings into a Merkle proof / audit path.
fn decode_proof(proof_b64: &[String]) -> Result<Vec<Vec<u8>>, JsValue> {
    proof_b64.iter().map(|s| decode(s)).collect()
}

/// Decode a base64 string into a fixed 64-byte array (CONIKS root / commitment).
fn decode_array_64(s: &str) -> Result<[u8; 64], JsValue> {
    let v = decode(s)?;
    v.try_into()
        .map_err(|_| JsValue::from_str("expected 64 bytes"))
}

/// Decode a base64 string into a fixed 32-byte array (commitment opening).
fn decode_array_32(s: &str) -> Result<[u8; 32], JsValue> {
    let v = decode(s)?;
    v.try_into()
        .map_err(|_| JsValue::from_str("expected 32 bytes"))
}

/// Parse an array of encoded `VerifierKey` strings.
fn parse_vkeys(vkeys: &[String]) -> Result<Vec<VerifierKey>, JsValue> {
    vkeys
        .iter()
        .map(|v| VerifierKey::parse(v).map_err(to_js))
        .collect()
}

/// Build a `key_history_v1::Entry` from base64/text fields. A missing or empty
/// `prev_entry_hash` is the genesis sentinel (`None`).
fn build_entry(
    seq: u64,
    ts_ms: u64,
    enc_x25519_b64: &str,
    enc_pq_b64: &str,
    signing_pub_b64: &str,
    prev_entry_hash_b64: Option<String>,
) -> Result<Entry, JsValue> {
    let prev_entry_hash = match prev_entry_hash_b64 {
        Some(ref s) if !s.is_empty() => Some(decode(s)?),
        _ => None,
    };
    Ok(Entry {
        seq,
        ts_ms,
        enc_x25519: decode(enc_x25519_b64)?,
        enc_pq: decode(enc_pq_b64)?,
        signing_pub: decode(signing_pub_b64)?,
        prev_entry_hash,
    })
}

/// Parse a JS commitment-hash string into a [`CommitmentHash`].
fn parse_commitment_hash(s: &str) -> Result<CommitmentHash, JsValue> {
    let normalized: String = s
        .chars()
        .filter(|c| *c != '_' && *c != '-')
        .collect::<String>()
        .to_ascii_lowercase();
    match normalized.as_str() {
        "sha3256" => Ok(CommitmentHash::Sha3_256),
        "sha3512" => Ok(CommitmentHash::Sha3_512),
        other => Err(JsValue::from_str(&format!(
            "invalid commitment hash \"{other}\": expected \"sha3_256\" or \"sha3_512\""
        ))),
    }
}

/// Parse + verify a signed policy, returning the authentic policy.
fn verified_policy(signed_b64: &str) -> Result<NamespacePolicy, JsValue> {
    let signed = SignedPolicy::parse(&decode(signed_b64)?).map_err(to_js)?;
    signed.verify().map_err(to_js)?;
    Ok(signed.policy().clone())
}

/// Build the `{ origin, size, rootB64, extensions }` checkpoint object.
fn checkpoint_to_js(cp: &Checkpoint) -> JsValue {
    let obj = js_sys::Object::new();
    set(&obj, "origin", &cp.origin().into());
    set(&obj, "size", &(cp.size() as f64).into());
    set(&obj, "rootB64", &b64::encode(cp.root_hash()).into());
    let exts = js_sys::Array::new();
    for ext in cp.extensions() {
        exts.push(&JsValue::from_str(ext));
    }
    set(&obj, "extensions", &exts.into());
    obj.into()
}

/// Build the declared-posture object from a verified policy.
fn policy_to_js(policy: &NamespacePolicy) -> Result<JsValue, JsValue> {
    use crate::policy::{CheckpointSuite, SecurityLevel, VrfMode};

    let security_level = match policy.security_level() {
        SecurityLevel::Cat3 => "cat3",
        SecurityLevel::Cat5 => "cat5",
    };
    let checkpoint_suite = match policy.checkpoint_suite() {
        CheckpointSuite::Hybrid => "hybrid",
        CheckpointSuite::HybridMatched => "hybridMatched",
        CheckpointSuite::PureCnsa2 => "pureCnsa2",
    };
    let commitment_hash = match policy.commitment_hash() {
        CommitmentHash::Sha3_256 => "sha3_256",
        CommitmentHash::Sha3_512 => "sha3_512",
    };
    let vrf_mode = match policy.vrf_mode() {
        VrfMode::Classical => "classical",
        VrfMode::HybridOutput => "hybridOutput",
        VrfMode::PurePqExperimental => "purePqExperimental",
    };

    let obj = js_sys::Object::new();
    set(&obj, "namespace", &policy.namespace().as_str().into());
    set(
        &obj,
        "policySchemaVersion",
        &(policy.policy_schema_version() as f64).into(),
    );
    set(&obj, "securityLevel", &security_level.into());
    set(&obj, "checkpointSuite", &checkpoint_suite.into());
    set(&obj, "commitmentHash", &commitment_hash.into());
    set(&obj, "vrfMode", &vrf_mode.into());
    set(
        &obj,
        "effectiveFrom",
        &(policy.effective_from() as f64).into(),
    );
    set(&obj, "createdAt", &(policy.created_at() as f64).into());
    set(
        &obj,
        "policyHashB64",
        &b64::encode(&policy.policy_hash().map_err(to_js)?).into(),
    );
    set(
        &obj,
        "rfc6962LeafHashB64",
        &b64::encode(&policy.rfc6962_leaf_hash()).into(),
    );
    Ok(obj.into())
}

/// Set a property on a JS object (the `Reflect::set` never fails for a plain
/// `Object`, so the error is unreachable in practice).
fn set(obj: &js_sys::Object, key: &str, value: &JsValue) {
    let _ = js_sys::Reflect::set(obj, &JsValue::from_str(key), value);
}

/// Convert a typed [`crate::Error`] into a thrown JS `Error`.
fn to_js(e: crate::Error) -> JsValue {
    JsValue::from_str(&e.to_string())
}