Replace all remaining tor_mem_is_zero() with fast_mem_is_zero()

This commit is contained in:
Nick Mathewson
2019-04-30 14:49:05 -04:00
parent 0034f10956
commit 295feeb093
38 changed files with 83 additions and 86 deletions
-3
View File
@@ -24,9 +24,6 @@ int fast_mem_is_zero(const char *mem, size_t len);
#define fast_digest_is_zero(d) fast_mem_is_zero((d), DIGEST_LEN)
#define fast_digetst256_is_zero(d) fast_mem_is_zero((d), DIGEST256_LEN)
// XXXX remove this after we replace all users.
#define tor_mem_is_zero fast_mem_is_zero
int tor_digest_is_zero(const char *digest);
int tor_digest256_is_zero(const char *digest);