anomstream-core 2026.4.1

Core streaming anomaly detectors + companion primitives (Random Cut Forest, per-feature EWMA / CUSUM, drift detectors, streaming stats) — part of the anomstream toolkit
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
//! Bloom filter — probabilistic set membership with a bounded
//! false-positive rate (`fpr`) and zero false negatives.
//!
//! Sized from the pair `(n, p)` where `n` is the expected insert
//! capacity and `p` the target `fpr`. Optimal parameters (Mitzenmacher,
//! 2002):
//!
//! - `m = ⌈−n · ln(p) / (ln 2)²⌉` — bit count
//! - `k = round((m / n) · ln 2)` — hash count
//!
//! At the design load (`n` inserts) the filter reaches its target
//! `p`; beyond that the false-positive rate grows geometrically.
//! IOC-membership workloads typically sit near `p = 0.01` with `n`
//! sized to the feed — e.g. 1 M IPs at `p = 0.01` costs ≈ 1.2 MiB
//! of bit state for 7 hashes per lookup.
//!
//! Hashing uses a single `SipHash` call per key, split into two
//! 32-bit lanes and combined via the Kirsch-Mitzenmacher
//! double-hashing trick: `h_i(x) = h1(x) + i · h2(x)`. The two
//! hashes are indistinguishable from independent hashes for any
//! filter parameters that matter in practice (Kirsch & Mitzenmacher
//! 2008 — *Less Hashing, Same Performance*).
//!
//! Gated behind `std` (uses [`std::hash::DefaultHasher`]).
//!
//! # References
//!
//! 1. B. Bloom, "Space/Time Trade-offs in Hash Coding with
//!    Allowable Errors", CACM 13(7), 1970.
//! 2. A. Kirsch, M. Mitzenmacher, "Less Hashing, Same Performance:
//!    Building a Better Bloom Filter", ESA 2006 / RSA 2008.

use alloc::vec;
use alloc::vec::Vec;
use core::hash::{Hash, Hasher};
use std::hash::DefaultHasher;

use crate::error::{RcfError, RcfResult};

/// Default target false-positive rate — 1 %.
pub const DEFAULT_FALSE_POSITIVE_RATE: f64 = 0.01;

/// Maximum hash functions per query. Guards against pathological
/// `(n, p)` pairs that would otherwise degenerate into `k > 64`
/// hashes — the 64 cap is well past the useful regime
/// (`p ≈ 2⁻⁶⁴`).
pub const MAX_HASHES: u32 = 64;

/// Maximum bit count — 1 Gibit = 128 MiB bit bank. Caps the
/// allocation an attacker-controlled `(capacity, fpr)` pair can
/// request. `n = 10⁸` IOCs at `p = 0.01` already lands around
/// 150 MiB of bit bank, which exceeds this cap; anything beyond
/// sits in sharded-filter territory and should be built from
/// multiple filters, not one giant bank.
pub const MAX_NUM_BITS: usize = 1 << 30;

/// Probabilistic set-membership sketch. `insert` is O(k);
/// `contains` is O(k) with zero false negatives and a tunable
/// false-positive rate.
///
/// # Examples
///
/// ```
/// use anomstream_core::BloomFilter;
///
/// // Size for 10 000 IOCs at 1 % false-positive rate.
/// let mut bf = BloomFilter::new(10_000, 0.01).expect("params");
/// bf.insert_bytes(b"malicious.example");
/// assert!(bf.contains_bytes(b"malicious.example"));
/// assert!(!bf.contains_bytes(b"benign.example"));
/// ```
#[derive(Clone, Debug)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[cfg_attr(feature = "serde", serde(try_from = "BloomFilterShadow"))]
pub struct BloomFilter {
    /// Bit bank — `ceil(num_bits / 64)` words.
    bits: Vec<u64>,
    /// Configured bit count `m`.
    num_bits: usize,
    /// Hash function count `k`.
    num_hashes: u32,
    /// Total `insert` calls — ops signal, also feeds the saturation
    /// check in [`Self::effective_fpr`].
    total_added: u64,
}

/// Over-the-wire [`BloomFilter`] layout — mirrors the public type
/// field-for-field. Deserialization always lands here first so
/// [`TryFrom`] can re-run the constructor's invariant checks
/// (`num_bits > 0`, `num_hashes ∈ (0, MAX_HASHES]`, bit-bank
/// length `== ceil(num_bits / 64)`) before a live filter is
/// handed to the caller.
#[cfg(feature = "serde")]
#[derive(serde::Serialize, serde::Deserialize)]
#[allow(clippy::missing_docs_in_private_items)]
struct BloomFilterShadow {
    bits: Vec<u64>,
    num_bits: usize,
    num_hashes: u32,
    total_added: u64,
}

#[cfg(feature = "serde")]
impl TryFrom<BloomFilterShadow> for BloomFilter {
    type Error = RcfError;

    fn try_from(raw: BloomFilterShadow) -> Result<Self, Self::Error> {
        if raw.num_bits == 0 || raw.num_bits > MAX_NUM_BITS {
            return Err(RcfError::InvalidConfig(
                alloc::format!(
                    "BloomFilter: num_bits {} out of (0, {MAX_NUM_BITS}]",
                    raw.num_bits
                )
                .into(),
            ));
        }
        if raw.num_hashes == 0 || raw.num_hashes > MAX_HASHES {
            return Err(RcfError::InvalidConfig(
                alloc::format!(
                    "BloomFilter: num_hashes {} out of (0, {MAX_HASHES}]",
                    raw.num_hashes
                )
                .into(),
            ));
        }
        let expected_words = raw.num_bits.div_ceil(64);
        if raw.bits.len() != expected_words {
            return Err(RcfError::InvalidConfig(
                alloc::format!(
                    "BloomFilter: bit-bank length {} != expected {expected_words} for num_bits {}",
                    raw.bits.len(),
                    raw.num_bits
                )
                .into(),
            ));
        }
        Ok(Self {
            bits: raw.bits,
            num_bits: raw.num_bits,
            num_hashes: raw.num_hashes,
            total_added: raw.total_added,
        })
    }
}

impl BloomFilter {
    /// Build a filter sized for `capacity` expected inserts at the
    /// given false-positive rate `fpr`.
    ///
    /// # Errors
    ///
    /// Returns [`RcfError::InvalidConfig`] when `capacity == 0`,
    /// `fpr` is outside `(0, 1)` or not finite, or the derived
    /// hash count exceeds [`MAX_HASHES`].
    pub fn new(capacity: usize, fpr: f64) -> RcfResult<Self> {
        if capacity == 0 {
            return Err(RcfError::InvalidConfig(
                alloc::string::ToString::to_string("BloomFilter: capacity must be > 0").into(),
            ));
        }
        if !fpr.is_finite() || fpr <= 0.0 || fpr >= 1.0 {
            return Err(RcfError::InvalidConfig(
                alloc::format!("BloomFilter: fpr {fpr} must be in (0, 1)").into(),
            ));
        }
        let ln2 = core::f64::consts::LN_2;
        #[allow(clippy::cast_precision_loss)]
        let n_f = capacity as f64;
        let m_f = (-n_f * fpr.ln() / (ln2 * ln2)).ceil().max(1.0);
        let k_f = ((m_f / n_f) * ln2).round().max(1.0);
        #[allow(clippy::cast_possible_truncation, clippy::cast_sign_loss)]
        let num_bits = m_f as usize;
        #[allow(clippy::cast_possible_truncation, clippy::cast_sign_loss)]
        let num_hashes = k_f as u32;
        Self::with_params(num_bits, num_hashes)
    }

    /// Default filter sized at `fpr = 0.01` for `capacity` inserts.
    ///
    /// # Errors
    ///
    /// Returns [`RcfError::InvalidConfig`] on `capacity == 0`.
    pub fn with_capacity(capacity: usize) -> RcfResult<Self> {
        Self::new(capacity, DEFAULT_FALSE_POSITIVE_RATE)
    }

    /// Build a filter with explicit `num_bits` and `num_hashes`.
    /// Escape hatch for callers with their own sizing policy (e.g.
    /// page-aligned bit banks, fixed `k` for hardware parity).
    ///
    /// # Errors
    ///
    /// Returns [`RcfError::InvalidConfig`] on `num_bits == 0`,
    /// `num_bits > MAX_NUM_BITS`, `num_hashes == 0`, or
    /// `num_hashes > MAX_HASHES`.
    pub fn with_params(num_bits: usize, num_hashes: u32) -> RcfResult<Self> {
        if num_bits == 0 || num_bits > MAX_NUM_BITS {
            return Err(RcfError::InvalidConfig(
                alloc::format!("BloomFilter: num_bits {num_bits} out of (0, {MAX_NUM_BITS}]")
                    .into(),
            ));
        }
        if num_hashes == 0 || num_hashes > MAX_HASHES {
            return Err(RcfError::InvalidConfig(
                alloc::format!("BloomFilter: num_hashes {num_hashes} out of (0, {MAX_HASHES}]")
                    .into(),
            ));
        }
        let words = num_bits.div_ceil(64);
        Ok(Self {
            bits: vec![0_u64; words],
            num_bits,
            num_hashes,
            total_added: 0,
        })
    }

    /// Configured bit count `m`.
    #[must_use]
    pub fn num_bits(&self) -> usize {
        self.num_bits
    }

    /// Configured hash count `k`.
    #[must_use]
    pub fn num_hashes(&self) -> u32 {
        self.num_hashes
    }

    /// Total `insert` calls — ops signal.
    #[must_use]
    pub fn total_added(&self) -> u64 {
        self.total_added
    }

    /// Memory footprint of the bit bank in bytes.
    #[must_use]
    pub fn memory_bytes(&self) -> usize {
        self.bits.len() * core::mem::size_of::<u64>()
    }

    /// `true` when no insertions have been recorded.
    #[must_use]
    pub fn is_empty(&self) -> bool {
        self.total_added == 0
    }

    /// Current empirical false-positive rate based on
    /// [`Self::total_added`]. Upper-bounded by
    /// `(1 − e^(−k·n/m))^k`.
    #[must_use]
    #[allow(clippy::cast_precision_loss)]
    pub fn effective_fpr(&self) -> f64 {
        let n = self.total_added as f64;
        let m = self.num_bits as f64;
        let k = f64::from(self.num_hashes);
        (1.0 - (-k * n / m).exp()).powf(k)
    }

    /// Insert a `Hash`-able value.
    #[inline]
    pub fn insert<T: Hash + ?Sized>(&mut self, value: &T) {
        let (h1, h2) = double_hash(value);
        self.insert_hash(h1, h2);
    }

    /// Insert a raw byte key — skips generic `Hash` dispatch.
    #[inline]
    pub fn insert_bytes(&mut self, key: &[u8]) {
        let (h1, h2) = double_hash(key);
        self.insert_hash(h1, h2);
    }

    /// Insert the caller-supplied `(h1, h2)` pair. Escape hatch for
    /// callers with a stronger hasher — accuracy depends on the
    /// pair being uniform modulo `num_bits`.
    #[inline]
    pub fn insert_hash(&mut self, h1: u64, h2: u64) {
        self.total_added = self.total_added.saturating_add(1);
        for i in 0..self.num_hashes {
            let idx = self.combined_index(h1, h2, i);
            self.set_bit(idx);
        }
    }

    /// Query a `Hash`-able value. Returns `true` when every probed
    /// bit is set — may be a false positive, never a false negative.
    #[must_use = "detector output should be checked — dropping it silently usually indicates a logic bug"]
    #[inline]
    pub fn contains<T: Hash + ?Sized>(&self, value: &T) -> bool {
        let (h1, h2) = double_hash(value);
        self.contains_hash(h1, h2)
    }

    /// Query a raw byte key.
    #[must_use = "detector output should be checked — dropping it silently usually indicates a logic bug"]
    #[inline]
    pub fn contains_bytes(&self, key: &[u8]) -> bool {
        let (h1, h2) = double_hash(key);
        self.contains_hash(h1, h2)
    }

    /// Query with a caller-supplied `(h1, h2)` pair.
    #[must_use = "detector output should be checked — dropping it silently usually indicates a logic bug"]
    #[inline]
    pub fn contains_hash(&self, h1: u64, h2: u64) -> bool {
        for i in 0..self.num_hashes {
            let idx = self.combined_index(h1, h2, i);
            if !self.get_bit(idx) {
                return false;
            }
        }
        true
    }

    /// Merge `other` into `self` via bitwise OR. Equivalent to the
    /// union of the underlying sets; keeps zero false negatives.
    ///
    /// # Errors
    ///
    /// Returns [`RcfError::InvalidConfig`] when the two filters
    /// disagree on `num_bits` or `num_hashes`.
    pub fn union(&mut self, other: &Self) -> RcfResult<()> {
        if self.num_bits != other.num_bits || self.num_hashes != other.num_hashes {
            return Err(RcfError::InvalidConfig(
                alloc::format!(
                    "BloomFilter::union: shape mismatch ({}/{} vs {}/{})",
                    self.num_bits,
                    self.num_hashes,
                    other.num_bits,
                    other.num_hashes,
                )
                .into(),
            ));
        }
        for (a, b) in self.bits.iter_mut().zip(other.bits.iter()) {
            *a |= *b;
        }
        self.total_added = self.total_added.saturating_add(other.total_added);
        Ok(())
    }

    /// Clear every bit. Capacity is preserved.
    pub fn reset(&mut self) {
        for w in &mut self.bits {
            *w = 0;
        }
        self.total_added = 0;
    }

    /// Kirsch-Mitzenmacher combined hash: `g_i(x) = h1 + i·h2
    /// (mod m)`.
    #[inline]
    fn combined_index(&self, h1: u64, h2: u64, i: u32) -> usize {
        let combined = h1.wrapping_add(u64::from(i).wrapping_mul(h2));
        #[allow(clippy::cast_possible_truncation)]
        let modded = (combined % (self.num_bits as u64)) as usize;
        modded
    }

    /// Set bit `idx` in the word-packed bit bank.
    #[inline]
    fn set_bit(&mut self, idx: usize) {
        let (w, b) = (idx >> 6, idx & 63);
        self.bits[w] |= 1_u64 << b;
    }

    /// Read bit `idx` from the word-packed bit bank.
    #[inline]
    fn get_bit(&self, idx: usize) -> bool {
        let (w, b) = (idx >> 6, idx & 63);
        (self.bits[w] >> b) & 1 == 1
    }
}

/// Derive the `(h1, h2)` pair from a single `SipHash` pass — splits
/// the 64-bit digest into `(low32, high32)` then expands each half
/// back to 64 bits with a prime mix. Cheaper than two independent
/// hasher passes; the double-hashing trick covers any residual
/// correlation.
fn double_hash<T: Hash + ?Sized>(value: &T) -> (u64, u64) {
    let mut h = DefaultHasher::new();
    value.hash(&mut h);
    let full = h.finish();
    let h1 = full;
    // Mix the upper half with a 64-bit odd constant (same family
    // Rust's standard hashmap uses as a perturbation) to decorrelate
    // `h2` from `h1` below the low bits where the bit index lives.
    let h2 = full.rotate_left(32).wrapping_mul(0x9E37_79B9_7F4A_7C15);
    (h1, h2)
}

#[cfg(test)]
#[allow(clippy::cast_possible_truncation, clippy::cast_sign_loss)]
mod tests {
    use super::*;

    #[test]
    fn new_rejects_invalid_params() {
        assert!(BloomFilter::new(0, 0.01).is_err());
        assert!(BloomFilter::new(1_000, 0.0).is_err());
        assert!(BloomFilter::new(1_000, 1.0).is_err());
        assert!(BloomFilter::new(1_000, f64::NAN).is_err());
        assert!(BloomFilter::new(1_000, -0.1).is_err());
    }

    #[test]
    fn with_params_rejects_zero_and_oversized_k() {
        assert!(BloomFilter::with_params(0, 4).is_err());
        assert!(BloomFilter::with_params(1_024, 0).is_err());
        assert!(BloomFilter::with_params(1_024, MAX_HASHES + 1).is_err());
    }

    #[test]
    fn with_params_rejects_oversized_num_bits() {
        assert!(BloomFilter::with_params(MAX_NUM_BITS + 1, 4).is_err());
        assert!(BloomFilter::with_params(usize::MAX, 4).is_err());
    }

    #[test]
    fn sizing_matches_optimal_formulas() {
        // n = 10 000, p = 0.01 → m ≈ 95 851, k ≈ 7.
        let bf = BloomFilter::new(10_000, 0.01).unwrap();
        assert!((95_000..=96_000).contains(&bf.num_bits()));
        assert_eq!(bf.num_hashes(), 7);
    }

    #[test]
    fn no_false_negatives_on_inserted_keys() {
        let mut bf = BloomFilter::new(1_000, 0.01).unwrap();
        for i in 0..1_000_u32 {
            bf.insert_bytes(&i.to_le_bytes());
        }
        for i in 0..1_000_u32 {
            assert!(bf.contains_bytes(&i.to_le_bytes()));
        }
    }

    #[test]
    fn contains_before_insert_is_false() {
        let bf = BloomFilter::new(1_000, 0.01).unwrap();
        assert!(!bf.contains_bytes(b"never-inserted"));
    }

    #[test]
    fn false_positive_rate_within_budget() {
        // Insert n keys, query n fresh keys — fraction of hits is
        // the empirical FPR.  Tolerance 3× target to absorb noise.
        let target = 0.01_f64;
        let mut bf = BloomFilter::new(10_000, target).unwrap();
        for i in 0..10_000_u32 {
            bf.insert_bytes(&i.to_le_bytes());
        }
        let mut hits = 0_u32;
        for i in 10_000_u32..20_000 {
            if bf.contains_bytes(&i.to_le_bytes()) {
                hits += 1;
            }
        }
        let fpr = f64::from(hits) / 10_000.0;
        assert!(fpr < target * 3.0, "fpr={fpr}");
    }

    #[test]
    fn union_matches_either_insert() {
        let mut a = BloomFilter::new(1_000, 0.01).unwrap();
        let mut b = BloomFilter::new(1_000, 0.01).unwrap();
        a.insert_bytes(b"alpha");
        b.insert_bytes(b"beta");
        a.union(&b).unwrap();
        assert!(a.contains_bytes(b"alpha"));
        assert!(a.contains_bytes(b"beta"));
    }

    #[test]
    fn union_rejects_shape_mismatch() {
        let mut a = BloomFilter::new(1_000, 0.01).unwrap();
        let b = BloomFilter::new(2_000, 0.01).unwrap();
        assert!(a.union(&b).is_err());
    }

    #[test]
    fn reset_clears_bits_but_keeps_capacity() {
        let mut bf = BloomFilter::new(1_000, 0.01).unwrap();
        for i in 0..100_u32 {
            bf.insert_bytes(&i.to_le_bytes());
        }
        bf.reset();
        assert!(bf.is_empty());
        assert!(!bf.contains_bytes(&0_u32.to_le_bytes()));
        // Post-reset inserts still work.
        bf.insert_bytes(b"fresh");
        assert!(bf.contains_bytes(b"fresh"));
    }

    #[test]
    fn generic_hash_and_byte_paths_agree() {
        let mut a = BloomFilter::new(1_000, 0.01).unwrap();
        let mut b = BloomFilter::new(1_000, 0.01).unwrap();
        let key = b"same-key";
        a.insert(&key.as_slice());
        b.insert_bytes(key);
        // Both paths go through `double_hash(<[u8]>)` so the bits
        // set must be identical.
        assert_eq!(a.bits, b.bits);
    }

    #[test]
    fn effective_fpr_grows_with_load() {
        let mut bf = BloomFilter::new(1_000, 0.01).unwrap();
        let empty = bf.effective_fpr();
        for i in 0..500_u32 {
            bf.insert_bytes(&i.to_le_bytes());
        }
        let half = bf.effective_fpr();
        for i in 500..1_000_u32 {
            bf.insert_bytes(&i.to_le_bytes());
        }
        let full = bf.effective_fpr();
        assert!(empty < half && half < full);
        assert!(full < 0.015); // near design target 1 %.
    }

    #[cfg(all(feature = "serde", feature = "postcard"))]
    #[test]
    fn postcard_roundtrip_preserves_membership() {
        let mut bf = BloomFilter::new(1_000, 0.01).unwrap();
        for i in 0..500_u32 {
            bf.insert_bytes(&i.to_le_bytes());
        }
        let bytes = postcard::to_allocvec(&bf).expect("serde ok");
        let back: BloomFilter = postcard::from_bytes(&bytes).expect("serde ok");
        for i in 0..500_u32 {
            assert!(back.contains_bytes(&i.to_le_bytes()));
        }
        assert_eq!(bf.num_bits(), back.num_bits());
        assert_eq!(bf.num_hashes(), back.num_hashes());
    }

    #[cfg(all(feature = "serde", feature = "postcard"))]
    #[test]
    fn deserialize_rejects_oversized_num_hashes() {
        let mut bf = BloomFilter::with_params(1_024, 7).unwrap();
        bf.insert_bytes(b"x");
        // Craft a bad payload via the shadow struct directly.
        let bad = BloomFilterShadow {
            bits: bf.bits.clone(),
            num_bits: bf.num_bits,
            num_hashes: MAX_HASHES + 1,
            total_added: bf.total_added,
        };
        let bytes = postcard::to_allocvec(&bad).unwrap();
        let back: Result<BloomFilter, _> = postcard::from_bytes(&bytes);
        assert!(back.is_err(), "oversized num_hashes must be rejected");
    }

    #[cfg(all(feature = "serde", feature = "postcard"))]
    #[test]
    fn deserialize_rejects_bit_bank_length_mismatch() {
        let bf = BloomFilter::with_params(1_024, 4).unwrap();
        let bad = BloomFilterShadow {
            bits: vec![0_u64; 3], // expected 16 words for 1024 bits.
            num_bits: bf.num_bits,
            num_hashes: bf.num_hashes,
            total_added: 0,
        };
        let bytes = postcard::to_allocvec(&bad).unwrap();
        let back: Result<BloomFilter, _> = postcard::from_bytes(&bytes);
        assert!(back.is_err(), "bit-bank length mismatch must be rejected");
    }

    #[cfg(all(feature = "serde", feature = "postcard"))]
    #[test]
    fn deserialize_rejects_zero_num_bits() {
        let bad = BloomFilterShadow {
            bits: alloc::vec::Vec::new(),
            num_bits: 0,
            num_hashes: 4,
            total_added: 0,
        };
        let bytes = postcard::to_allocvec(&bad).unwrap();
        let back: Result<BloomFilter, _> = postcard::from_bytes(&bytes);
        assert!(back.is_err(), "zero num_bits must be rejected");
    }
}