summaryrefslogtreecommitdiff
path: root/c_src/include/crypto/poly1305.h
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@linux.dev>2024-01-16 17:00:02 -0500
committerKent Overstreet <kent.overstreet@linux.dev>2024-01-16 17:17:23 -0500
commitb5fd066153c40a70a29caa1ea7987723ab687763 (patch)
tree6d43a8b0a90d549a54c65565ac96c92b3e84b594 /c_src/include/crypto/poly1305.h
parent06ff8b55b70fda44d91b31b5511fafd1680a8934 (diff)
Move c_src dirs back to toplevel
We just wanted c sourcefiles out of the top level, not c source directories. Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'c_src/include/crypto/poly1305.h')
-rw-r--r--c_src/include/crypto/poly1305.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/c_src/include/crypto/poly1305.h b/c_src/include/crypto/poly1305.h
deleted file mode 100644
index 9fcfbfeb..00000000
--- a/c_src/include/crypto/poly1305.h
+++ /dev/null
@@ -1,13 +0,0 @@
-/*
- * Common values for the Poly1305 algorithm
- */
-
-#ifndef _CRYPTO_POLY1305_H
-#define _CRYPTO_POLY1305_H
-
-#include <sodium/crypto_onetimeauth_poly1305.h>
-
-#define POLY1305_KEY_SIZE crypto_onetimeauth_poly1305_KEYBYTES
-#define POLY1305_DIGEST_SIZE crypto_onetimeauth_poly1305_BYTES
-
-#endif