Tor 0.4.9.0-alpha-dev
Data Fields
digestset_t Struct Reference

Data Fields

struct sipkey key [BLOOMFILT_N_HASHES]
 
bloomfilt_hash_fn hashfn
 
uint32_t mask
 
bitarray_tba
 

Detailed Description

An address_set_t represents a set of tor_addr_t values. The implementation is probabilistic: false negatives cannot occur but false positives are possible.

A set of elements, implemented as a Bloom filter.

An digestset_t represents a set of 20-byte digest values. The implementation is probabilistic: false negatives cannot occur but false positives are possible.

Definition at line 24 of file bloomfilt.c.

Field Documentation

◆ ba

A bit array to implement the Bloom filter.

Definition at line 31 of file bloomfilt.c.

Referenced by bloomfilt_add(), and bloomfilt_probably_contains().

◆ hashfn

bloomfilt_hash_fn hashfn

Function used to generate hashes

Definition at line 28 of file bloomfilt.c.

Referenced by bloomfilt_add(), and bloomfilt_probably_contains().

◆ key

siphash keys to make BLOOMFILT_N_HASHES independent hashes for each items.

Definition at line 27 of file bloomfilt.c.

Referenced by bloomfilt_add(), and bloomfilt_probably_contains().

◆ mask

uint32_t mask

One less than the number of bits in ba; always one less than a power of two.

Definition at line 29 of file bloomfilt.c.


The documentation for this struct was generated from the following file: