Browse Source

Merge pull request #2609 from babarosaM33/bloom_slots

crypto: lower bloom filter error rate
pull/2611/head
Max Lv 5 years ago
committed by GitHub
parent
commit
6f9bd72def
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. 2
      src/crypto.h

2
src/crypto.h

@ -80,7 +80,7 @@ typedef mbedtls_md_info_t digest_type_t;
#endif #endif
#ifndef BF_ERROR_RATE_FOR_SERVER #ifndef BF_ERROR_RATE_FOR_SERVER
#define BF_ERROR_RATE_FOR_SERVER 1e-6
#define BF_ERROR_RATE_FOR_SERVER 1e-10
#endif #endif
#ifndef BF_ERROR_RATE_FOR_CLIENT #ifndef BF_ERROR_RATE_FOR_CLIENT

Loading…
Cancel
Save