aboutsummaryrefslogtreecommitdiff
path: root/src/common/di_ops.c
AgeCommit message (Collapse)Author
2014-08-21Suppress coverity warning about overflowing in safe_mem_is_zeroNick Mathewson
The unsigned underflow here is defined and intentional. CID 202482
2014-08-21Suppress coverity warning about overflowing in tor_memeq.Nick Mathewson
The unsigned underflow here is defined and intentional. CID 202482
2013-01-16Update the copyright date to 201.Nick Mathewson
2013-01-03Implement a constant-time safe_mem_is_zero.Nick Mathewson
2013-01-02Add a data-invariant linear-search map structureNick Mathewson
I'm going to use this for looking op keys server-side for ntor.
2012-09-17Fix comment typo in tor_memeqRobert Ransom
2012-06-04Update copyright dates to 2012; add a few missing copyright statementsNick Mathewson
2011-05-15Another doc tweak on tor_memcmp: <b>b</b>, not <b>.Nick Mathewson
2011-05-15minor tweaks to 4b19730c8234dRoger Dingledine
2011-05-11Add a data-independent variant of memcmp and a d-i memeq function.Nick Mathewson
The tor_memcmp code is by Robert Ransom, and the tor_memeq code is by me. Both incorporate some ideas from DJB's stuff.