Y
Hacker News
new
|
ask
|
show
|
jobs
by
tfigueroa
962 days ago
I thought I was misreading this. It seems onerous to keep track of every nonce, even scoped to a given session. Maybe I’m missing something.
1 comments
kortex
962 days ago
A Bloom or cuckoo filter would allow for efficient tracking of nonces (depending if the security model prefers false positives with 4xx/resend, or false negatives)
link
cryptonym
962 days ago
Still not ideal in a distributed environment, a request may have to synchronously go around the world to hit that nonce db.
link