sbo3l-core 1.0.1

SBO3L core: protocol types, request hashing, error model, signed receipts.
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
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
//! Verifiable audit export bundle (v1).
//!
//! A self-contained, machine-readable proof that a SBO3L decision happened
//! and is internally consistent. The bundle pulls together everything a
//! third party (or a future you) needs to verify that:
//!
//! - the policy receipt was signed by the recorded receipt-signer key,
//! - the audit event referenced by the receipt was signed by the recorded
//!   audit-signer key,
//! - the audit event sits in a hash-chained log whose `prev_event_hash`
//!   linkage and per-event `event_hash` reproduce from the canonical event
//!   bytes,
//! - and the receipt's `audit_event_id` actually maps to the supplied
//!   audit event.
//!
//! The bundle is *not* an oracle of legitimacy — it does not say "SBO3L
//! issued this receipt"; only the public keys you decide to trust can do
//! that. The bundle says "given that you trust these two public keys,
//! every signature, hash and link in this proof is valid".
//!
//! Tagline: **SBO3L does not just decide. It leaves behind verifiable proof.**

use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};
use thiserror::Error;

use crate::audit::{verify_chain, ChainError, SignedAuditEvent};
use crate::receipt::{Decision, PolicyReceipt};
use crate::signer::VerifyError;

/// Top-level bundle envelope. See module docs.
///
/// `audit_chain_segment` MUST start at the genesis event (seq=1) and run
/// in seq order through the event referenced by `receipt.audit_event_id`.
/// A future revision can carry a Merkle proof instead of the full segment.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
#[serde(deny_unknown_fields)]
pub struct AuditBundle {
    pub bundle_type: BundleType,
    pub version: u32,
    pub exported_at: DateTime<Utc>,
    pub receipt: PolicyReceipt,
    pub audit_event: SignedAuditEvent,
    pub audit_chain_segment: Vec<SignedAuditEvent>,
    pub verification_keys: VerificationKeys,
    pub summary: BundleSummary,
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
pub enum BundleType {
    #[serde(rename = "sbo3l.audit_bundle.v1")]
    AuditBundleV1,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
#[serde(deny_unknown_fields)]
pub struct VerificationKeys {
    pub receipt_signer_pubkey_hex: String,
    pub audit_signer_pubkey_hex: String,
}

/// Pre-extracted convenience fields. Always derived from the other bundle
/// fields; `verify` re-derives and asserts equality, so a tampered summary
/// cannot lie about the receipt or chain.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
#[serde(deny_unknown_fields)]
pub struct BundleSummary {
    pub decision: Decision,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub deny_code: Option<String>,
    pub request_hash: String,
    pub policy_hash: String,
    pub audit_event_id: String,
    pub audit_event_hash: String,
    pub audit_chain_root: String,
    pub audit_chain_latest: String,
}

/// Result of a successful verification. Mirrors the bundle summary plus a
/// few derived counters.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct VerifySummary {
    pub receipt_signature_ok: bool,
    pub audit_event_signature_ok: bool,
    pub audit_chain_ok: bool,
    pub receipt_audit_link_ok: bool,
    pub decision: Decision,
    pub deny_code: Option<String>,
    pub request_hash: String,
    pub policy_hash: String,
    pub audit_event_id: String,
    pub audit_event_hash: String,
    pub audit_chain_length: usize,
}

/// The single supported bundle format identity. Both fields are checked
/// in `verify()`; either mismatching is a fail-closed format-confusion guard.
const SUPPORTED_BUNDLE_VERSION: u32 = 1;

#[derive(Debug, Error)]
pub enum BundleError {
    #[error("bundle is missing a receipt's audit_event_id from the chain segment")]
    AuditEventNotInChain,
    #[error("receipt.audit_event_id does not match audit_event.event.id")]
    ReceiptAuditMismatch,
    #[error("audit_event hash in chain does not match standalone audit_event")]
    AuditEventHashMismatch,
    #[error("summary field '{0}' does not match the bundle body")]
    SummaryMismatch(&'static str),
    #[error("receipt signature does not verify under verification_keys.receipt_signer_pubkey_hex")]
    ReceiptSignatureInvalid,
    #[error(
        "audit_event signature does not verify under verification_keys.audit_signer_pubkey_hex"
    )]
    AuditEventSignatureInvalid,
    #[error("audit chain invalid: {0}")]
    Chain(#[from] ChainError),
    #[error("signer error: {0}")]
    Signer(#[from] VerifyError),
    #[error("serde error: {0}")]
    Serde(#[from] serde_json::Error),
    #[error("unsupported bundle version: {0} (this build supports v1)")]
    UnsupportedVersion(u32),
    #[error("unsupported bundle_type: only sbo3l.audit_bundle.v1 is accepted in this build")]
    UnsupportedBundleType,
}

/// Build a bundle from already-signed pieces. Both signer public keys must
/// be supplied — the bundle records who you intend the verifier to trust,
/// not who actually signed (signatures themselves prove that).
///
/// `audit_chain_segment` must include the receipt's audit event and every
/// preceding event back to seq=1, in seq order.
pub fn build(
    receipt: PolicyReceipt,
    audit_chain_segment: Vec<SignedAuditEvent>,
    receipt_signer_pubkey_hex: String,
    audit_signer_pubkey_hex: String,
    exported_at: DateTime<Utc>,
) -> Result<AuditBundle, BundleError> {
    let audit_event = audit_chain_segment
        .iter()
        .find(|e| e.event.id == receipt.audit_event_id)
        .cloned()
        .ok_or(BundleError::AuditEventNotInChain)?;
    let chain_root = audit_chain_segment
        .first()
        .map(|e| e.event_hash.clone())
        .ok_or(BundleError::AuditEventNotInChain)?;
    let chain_latest = audit_chain_segment
        .last()
        .map(|e| e.event_hash.clone())
        .ok_or(BundleError::AuditEventNotInChain)?;
    let summary = BundleSummary {
        decision: receipt.decision.clone(),
        deny_code: receipt.deny_code.clone(),
        request_hash: receipt.request_hash.clone(),
        policy_hash: receipt.policy_hash.clone(),
        audit_event_id: audit_event.event.id.clone(),
        audit_event_hash: audit_event.event_hash.clone(),
        audit_chain_root: chain_root,
        audit_chain_latest: chain_latest,
    };
    Ok(AuditBundle {
        bundle_type: BundleType::AuditBundleV1,
        version: 1,
        exported_at,
        receipt,
        audit_event,
        audit_chain_segment,
        verification_keys: VerificationKeys {
            receipt_signer_pubkey_hex,
            audit_signer_pubkey_hex,
        },
        summary,
    })
}

/// Verify every claim the bundle makes. Returns a populated `VerifySummary`
/// on success or the first invariant violation as an error. We deliberately
/// fail fast — partial-success reporting would let a tampered bundle pick
/// which checks the verifier sees pass.
///
/// The summary block carried inside the bundle is re-derived and compared
/// against the body, so a tampered summary cannot misrepresent the receipt
/// or chain. (The acceptance test for this is
/// `verify_fails_when_summary_lies_about_decision`.)
pub fn verify(bundle: &AuditBundle) -> Result<VerifySummary, BundleError> {
    // 0. Format-confusion guard. A bundle with `version: 2` (or any other
    //    value) MUST NOT verify as if it were v1, even if every signature
    //    inside still happens to round-trip — a future v2 may carry
    //    different fields, different canonical-body rules, or different
    //    semantics, and silently accepting it under v1 rules would let an
    //    attacker present a v2 bundle to a v1 verifier. Same reasoning for
    //    `bundle_type`: serde already rejects unknown enum variants at
    //    parse time, but the explicit `matches!` here is defence-in-depth
    //    against future enum additions and against callers who construct
    //    a bundle programmatically (bypassing serde).
    if !matches!(bundle.bundle_type, BundleType::AuditBundleV1) {
        return Err(BundleError::UnsupportedBundleType);
    }
    if bundle.version != SUPPORTED_BUNDLE_VERSION {
        return Err(BundleError::UnsupportedVersion(bundle.version));
    }

    // 1. Receipt signature — covers request_hash, policy_hash, decision,
    //    deny_code, audit_event_id, etc. via canonical-body signing.
    bundle
        .receipt
        .verify(&bundle.verification_keys.receipt_signer_pubkey_hex)
        .map_err(|_| BundleError::ReceiptSignatureInvalid)?;

    // 2. Standalone audit_event signature.
    bundle
        .audit_event
        .verify_signature(&bundle.verification_keys.audit_signer_pubkey_hex)
        .map_err(|_| BundleError::AuditEventSignatureInvalid)?;

    // 3. Chain integrity — recomputes every event_hash, walks prev_event_hash,
    //    re-verifies every signature with the same audit signer key.
    verify_chain(
        &bundle.audit_chain_segment,
        true,
        Some(&bundle.verification_keys.audit_signer_pubkey_hex),
    )?;

    // 4. The receipt must point at an event that actually exists in the
    //    chain segment, and the standalone audit_event must match the chain
    //    member with the same id (id, hash, signature, prev pointer all the
    //    same — equality on the SignedAuditEvent struct).
    if bundle.receipt.audit_event_id != bundle.audit_event.event.id {
        return Err(BundleError::ReceiptAuditMismatch);
    }
    let chain_member = bundle
        .audit_chain_segment
        .iter()
        .find(|e| e.event.id == bundle.audit_event.event.id)
        .ok_or(BundleError::AuditEventNotInChain)?;
    if chain_member != &bundle.audit_event {
        // Same id but different signed contents — the standalone event
        // disagrees with the chain member.
        return Err(BundleError::AuditEventHashMismatch);
    }

    // 5. Summary block must agree with the body. Cheap protection against
    //    a tampered summary that contradicts what the (signed) receipt says.
    let s = &bundle.summary;
    if s.decision != bundle.receipt.decision {
        return Err(BundleError::SummaryMismatch("decision"));
    }
    if s.deny_code != bundle.receipt.deny_code {
        return Err(BundleError::SummaryMismatch("deny_code"));
    }
    if s.request_hash != bundle.receipt.request_hash {
        return Err(BundleError::SummaryMismatch("request_hash"));
    }
    if s.policy_hash != bundle.receipt.policy_hash {
        return Err(BundleError::SummaryMismatch("policy_hash"));
    }
    if s.audit_event_id != bundle.audit_event.event.id {
        return Err(BundleError::SummaryMismatch("audit_event_id"));
    }
    if s.audit_event_hash != bundle.audit_event.event_hash {
        return Err(BundleError::SummaryMismatch("audit_event_hash"));
    }
    let expected_root = &bundle
        .audit_chain_segment
        .first()
        .ok_or(BundleError::AuditEventNotInChain)?
        .event_hash;
    if &s.audit_chain_root != expected_root {
        return Err(BundleError::SummaryMismatch("audit_chain_root"));
    }
    let expected_latest = &bundle
        .audit_chain_segment
        .last()
        .ok_or(BundleError::AuditEventNotInChain)?
        .event_hash;
    if &s.audit_chain_latest != expected_latest {
        return Err(BundleError::SummaryMismatch("audit_chain_latest"));
    }

    Ok(VerifySummary {
        receipt_signature_ok: true,
        audit_event_signature_ok: true,
        audit_chain_ok: true,
        receipt_audit_link_ok: true,
        decision: bundle.receipt.decision.clone(),
        deny_code: bundle.receipt.deny_code.clone(),
        request_hash: bundle.receipt.request_hash.clone(),
        policy_hash: bundle.receipt.policy_hash.clone(),
        audit_event_id: bundle.audit_event.event.id.clone(),
        audit_event_hash: bundle.audit_event.event_hash.clone(),
        audit_chain_length: bundle.audit_chain_segment.len(),
    })
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::audit::{AuditEvent, ZERO_HASH};
    use crate::receipt::UnsignedReceipt;
    use crate::signer::DevSigner;

    /// Build a small but realistic bundle covering the receipt for seq=2
    /// in a 3-event chain. Exposes the two signers so tampering tests can
    /// flip pieces and re-verify.
    fn fixture() -> (AuditBundle, DevSigner, DevSigner) {
        let audit_signer = DevSigner::from_seed("audit-signer-v1", [11u8; 32]);
        let receipt_signer = DevSigner::from_seed("decision-signer-v1", [7u8; 32]);

        let e1_event = AuditEvent {
            version: 1,
            seq: 1,
            id: "evt-01HTAWX5K3R8YV9NQB7C6P2DGQ".to_string(),
            ts: chrono::DateTime::parse_from_rfc3339("2026-04-27T12:00:00Z")
                .unwrap()
                .into(),
            event_type: "runtime_started".to_string(),
            actor: "sbo3l-server".to_string(),
            subject_id: "runtime".to_string(),
            payload_hash: ZERO_HASH.to_string(),
            metadata: serde_json::Map::new(),
            policy_version: None,
            policy_hash: None,
            attestation_ref: None,
            prev_event_hash: ZERO_HASH.to_string(),
        };
        let e1 = SignedAuditEvent::sign(e1_event, &audit_signer).unwrap();

        let e2_event = AuditEvent {
            version: 1,
            seq: 2,
            id: "evt-01HTAWX5K3R8YV9NQB7C6P2DGR".to_string(),
            ts: chrono::DateTime::parse_from_rfc3339("2026-04-27T12:00:01Z")
                .unwrap()
                .into(),
            event_type: "policy_decided".to_string(),
            actor: "policy_engine".to_string(),
            subject_id: "pr-test-001".to_string(),
            payload_hash: "1111111111111111111111111111111111111111111111111111111111111111"
                .to_string(),
            metadata: serde_json::Map::new(),
            policy_version: Some(1),
            policy_hash: Some(
                "2222222222222222222222222222222222222222222222222222222222222222".to_string(),
            ),
            attestation_ref: None,
            prev_event_hash: e1.event_hash.clone(),
        };
        let e2 = SignedAuditEvent::sign(e2_event, &audit_signer).unwrap();

        let e3_event = AuditEvent {
            version: 1,
            seq: 3,
            id: "evt-01HTAWX5K3R8YV9NQB7C6P2DGS".to_string(),
            ts: chrono::DateTime::parse_from_rfc3339("2026-04-27T12:00:02Z")
                .unwrap()
                .into(),
            event_type: "policy_decided".to_string(),
            actor: "policy_engine".to_string(),
            subject_id: "pr-test-002".to_string(),
            payload_hash: "3333333333333333333333333333333333333333333333333333333333333333"
                .to_string(),
            metadata: serde_json::Map::new(),
            policy_version: Some(1),
            policy_hash: Some(
                "2222222222222222222222222222222222222222222222222222222222222222".to_string(),
            ),
            attestation_ref: None,
            prev_event_hash: e2.event_hash.clone(),
        };
        let e3 = SignedAuditEvent::sign(e3_event, &audit_signer).unwrap();

        let unsigned = UnsignedReceipt {
            agent_id: "research-agent-01".to_string(),
            decision: Decision::Allow,
            deny_code: None,
            request_hash: "1111111111111111111111111111111111111111111111111111111111111111"
                .to_string(),
            policy_hash: "2222222222222222222222222222222222222222222222222222222222222222"
                .to_string(),
            policy_version: Some(1),
            audit_event_id: e2.event.id.clone(),
            execution_ref: None,
            issued_at: chrono::DateTime::parse_from_rfc3339("2026-04-27T12:00:01.500Z")
                .unwrap()
                .into(),
            expires_at: None,
        };
        let receipt = unsigned.sign(&receipt_signer).unwrap();
        let exported_at: DateTime<Utc> =
            chrono::DateTime::parse_from_rfc3339("2026-04-28T08:00:00Z")
                .unwrap()
                .into();
        let bundle = build(
            receipt,
            vec![e1, e2, e3],
            receipt_signer.verifying_key_hex(),
            audit_signer.verifying_key_hex(),
            exported_at,
        )
        .unwrap();
        (bundle, receipt_signer, audit_signer)
    }

    #[test]
    fn happy_path_round_trip_verifies() {
        let (bundle, _, _) = fixture();
        let summary = verify(&bundle).expect("bundle must verify");
        assert!(summary.receipt_signature_ok);
        assert!(summary.audit_event_signature_ok);
        assert!(summary.audit_chain_ok);
        assert!(summary.receipt_audit_link_ok);
        assert_eq!(summary.audit_chain_length, 3);
        assert_eq!(summary.decision, Decision::Allow);
    }

    #[test]
    fn bundle_canonical_export_is_deterministic() {
        // Two identical inputs must produce byte-identical JSON. We use the
        // standard serde_json::to_vec because the bundle's serde derives
        // serialise fields in a fixed declaration order.
        let (bundle, _, _) = fixture();
        let a = serde_json::to_vec(&bundle).unwrap();
        let b = serde_json::to_vec(&bundle).unwrap();
        assert_eq!(a, b);
    }

    #[test]
    fn verify_fails_when_request_hash_mutated() {
        // Mutating any signature-covered field on the receipt invalidates
        // the receipt signature. This pins the security claim: a tampered
        // request_hash cannot pass verification even if the signature bytes
        // are kept intact.
        let (mut bundle, _, _) = fixture();
        bundle.receipt.request_hash =
            "deadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef".to_string();
        // Note: we deliberately do NOT touch the summary here; the receipt-
        // signature check fails before the summary mismatch check would run.
        let err = verify(&bundle).expect_err("must reject mutated request_hash");
        assert!(matches!(err, BundleError::ReceiptSignatureInvalid));
    }

    #[test]
    fn verify_fails_when_policy_hash_mutated() {
        let (mut bundle, _, _) = fixture();
        bundle.receipt.policy_hash =
            "cafebabecafebabecafebabecafebabecafebabecafebabecafebabecafebabe".to_string();
        let err = verify(&bundle).expect_err("must reject mutated policy_hash");
        assert!(matches!(err, BundleError::ReceiptSignatureInvalid));
    }

    #[test]
    fn verify_fails_when_receipt_signature_bytes_mutated() {
        let (mut bundle, _, _) = fixture();
        // Flip one nibble in the signature — must invalidate it without
        // changing any field the signature covers.
        let sig = &mut bundle.receipt.signature.signature_hex;
        let last = sig.pop().unwrap();
        sig.push(if last == '0' { '1' } else { '0' });
        let err = verify(&bundle).expect_err("must reject mutated signature");
        assert!(matches!(err, BundleError::ReceiptSignatureInvalid));
    }

    #[test]
    fn verify_fails_when_audit_event_hash_mutated() {
        // The standalone audit_event must match the chain member of the
        // same id. Mutating the standalone event's hash makes the standalone
        // and the chain disagree — caught by the AuditEventHashMismatch
        // check before chain verification would even matter.
        let (mut bundle, _, _) = fixture();
        bundle.audit_event.event_hash =
            "0000000000000000000000000000000000000000000000000000000000000001".to_string();
        let err = verify(&bundle).expect_err("must reject mutated audit_event hash");
        // Standalone audit_event signature is computed over the *event*, not
        // event_hash; flipping event_hash alone passes signature verify but
        // breaks the standalone vs chain equality check.
        assert!(matches!(err, BundleError::AuditEventHashMismatch));
    }

    #[test]
    fn verify_fails_when_audit_chain_linkage_broken() {
        let (mut bundle, _, _) = fixture();
        // Flip prev_event_hash on seq=3 — verify_chain detects PrevHashMismatch.
        bundle.audit_chain_segment[2].event.prev_event_hash =
            "0000000000000000000000000000000000000000000000000000000000000001".to_string();
        let err = verify(&bundle).expect_err("must reject broken chain linkage");
        assert!(matches!(err, BundleError::Chain(_)));
    }

    #[test]
    fn verify_fails_when_audit_event_not_in_chain() {
        let (mut bundle, _, _) = fixture();
        // Drop the receipt's referenced event from the chain segment.
        bundle.audit_chain_segment.retain(|e| e.event.seq != 2);
        // Patch summary's chain endpoints to keep the summary self-consistent
        // so we exercise the audit-link check, not the summary check.
        bundle.summary.audit_chain_root = bundle.audit_chain_segment[0].event_hash.clone();
        bundle.summary.audit_chain_latest = bundle
            .audit_chain_segment
            .last()
            .unwrap()
            .event_hash
            .clone();
        let err = verify(&bundle).expect_err("must reject missing audit_event");
        // The chain segment now skips seq=2, so prev_event_hash on the
        // remaining seq=3 no longer matches its predecessor — chain verify
        // catches that first. (If the receipt's audit_event_id had pointed
        // outside any plausible chain, the AuditEventNotInChain branch
        // would fire instead. This test pins the realistic path.)
        assert!(matches!(err, BundleError::Chain(_)));
    }

    #[test]
    fn verify_fails_when_summary_lies_about_decision() {
        // Independent property: the summary cannot disagree with the body.
        let (mut bundle, _, _) = fixture();
        bundle.summary.decision = Decision::Deny;
        let err = verify(&bundle).expect_err("must reject summary that lies");
        assert!(matches!(err, BundleError::SummaryMismatch("decision")));
    }

    #[test]
    fn verify_fails_when_wrong_pubkey_supplied() {
        // If the caller swaps the verification key (e.g. pretends a
        // different signer issued the receipt), receipt verification fails.
        let (mut bundle, _, _) = fixture();
        let other = DevSigner::from_seed("attacker", [99u8; 32]);
        bundle.verification_keys.receipt_signer_pubkey_hex = other.verifying_key_hex();
        let err = verify(&bundle).expect_err("must reject wrong receipt pubkey");
        assert!(matches!(err, BundleError::ReceiptSignatureInvalid));
    }

    #[test]
    fn verify_fails_when_version_field_is_not_one() {
        // Format-confusion guard: a bundle that claims to be v2 (or any
        // value other than 1) must NOT verify under v1 rules even if every
        // signature inside still happens to round-trip. This fires before
        // any signature/chain check so a malicious v2 bundle never reaches
        // the v1 verification path.
        let (mut bundle, _, _) = fixture();
        bundle.version = 2;
        let err = verify(&bundle).expect_err("must reject unsupported bundle version");
        assert!(
            matches!(err, BundleError::UnsupportedVersion(2)),
            "got {err:?}"
        );

        // Sanity: a fresh v1 bundle still verifies, so the gate isn't a
        // false positive.
        let (good, _, _) = fixture();
        assert_eq!(good.version, 1);
        verify(&good).expect("valid v1 bundle must still verify");
    }

    #[test]
    fn verify_fails_when_version_is_unsupported_via_json_round_trip() {
        // Same property as above, but exercised through the JSON path: the
        // serde derive happily round-trips arbitrary u32 values for
        // `version`, so a tampered exported bundle reaches `verify()` with
        // a non-1 version. The gate must reject it.
        let (bundle, _, _) = fixture();
        let mut value: serde_json::Value = serde_json::to_value(&bundle).unwrap();
        value["version"] = serde_json::Value::Number(serde_json::Number::from(2));
        let tampered: AuditBundle = serde_json::from_value(value).expect(
            "serde must deserialise an arbitrary u32; the format gate runs in verify(), not parse",
        );
        let err = verify(&tampered).expect_err("must reject v2 on disk");
        assert!(matches!(err, BundleError::UnsupportedVersion(2)));
    }

    #[test]
    fn unknown_bundle_type_string_is_rejected_by_serde_at_parse_time() {
        // Belt-and-braces evidence that the bundle_type field is not a
        // confusion vector. `BundleType` is a single-variant enum mapped
        // to the literal `"sbo3l.audit_bundle.v1"`; serde refuses any
        // other string before `verify()` is even called.
        //
        // The defensive `matches!` check inside `verify()` (covered by
        // `verify_fails_when_bundle_type_is_unsupported_variant_in_future`
        // would catch additions to the enum) is therefore unreachable
        // through normal JSON paths today, but pins fail-closed semantics
        // for the day a v2 variant is added.
        let (bundle, _, _) = fixture();
        let mut value: serde_json::Value = serde_json::to_value(&bundle).unwrap();
        value["bundle_type"] = serde_json::Value::String("sbo3l.audit_bundle.v2".to_string());
        let parse_err = serde_json::from_value::<AuditBundle>(value)
            .expect_err("serde must reject an unknown bundle_type string before reaching verify()");
        // The exact serde error message isn't part of the contract; we
        // just assert that the parse fails so a v2 string never reaches
        // the v1 verifier.
        let msg = parse_err.to_string();
        assert!(
            msg.contains("bundle_type") || msg.contains("variant"),
            "expected a serde enum-variant error mentioning bundle_type; got {msg}"
        );
    }
}