diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-21 16:34:00 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-22 09:49:13 -0400 |
commit | 932b4d0a4342ec281b6f692f23453d6c46026c18 (patch) | |
tree | 7495d70fd2f2390d351917ce1421e80be43fa3d2 /src/lib/crypt_ops/crypto_digest.c | |
parent | 479c2ab503a3a051200339a7df9a99dcfb0ed976 (diff) | |
download | tor-932b4d0a4342ec281b6f692f23453d6c46026c18.tar.gz tor-932b4d0a4342ec281b6f692f23453d6c46026c18.zip |
Remove container->crypto dependency
Containers were using crypto_digest.h, just to see the value of
DIGEST_LEN. Moved those constants into a new defs module.
Diffstat (limited to 'src/lib/crypt_ops/crypto_digest.c')
-rw-r--r-- | src/lib/crypt_ops/crypto_digest.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lib/crypt_ops/crypto_digest.c b/src/lib/crypt_ops/crypto_digest.c index d746aaaca5..b6ec2b2841 100644 --- a/src/lib/crypt_ops/crypto_digest.c +++ b/src/lib/crypt_ops/crypto_digest.c @@ -580,4 +580,3 @@ crypto_xof_free_(crypto_xof_t *xof) memwipe(xof, 0, sizeof(crypto_xof_t)); tor_free(xof); } - |