Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch digest to cuckoo filters, to enable O(1) removal #413

Merged
merged 14 commits into from Mar 1, 2018
2 changes: 1 addition & 1 deletion draft-ietf-httpbis-cache-digest.md
Expand Up @@ -252,7 +252,7 @@ Given the following inputs:
* `N`, an integer
* `f`, an integer indicating the number of output bits

1. Let `hash-value` be the return value of {{hash}} with `key` and `N` as inputs.
1. Let `hash-value` be the SHA-256 message digest {{RFC6234}} of `key`, expressed as an integer.
2. Let `h` be the number of bits in `hash-value`
3. Let `fingerprint-value` be 0
4. While `fingerprint-value` is 0 and `h` > `f`:
Expand Down