summaryrefslogtreecommitdiff
path: root/include/crypto/chacha20.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/crypto/chacha20.h')
-rw-r--r--include/crypto/chacha20.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/include/crypto/chacha20.h b/include/crypto/chacha20.h
index 20d20f68..1cdc77ba 100644
--- a/include/crypto/chacha20.h
+++ b/include/crypto/chacha20.h
@@ -12,15 +12,4 @@
#define CHACHA20_KEY_SIZE 32
#define CHACHA20_BLOCK_SIZE 64
-struct chacha20_ctx {
- u32 key[8];
-};
-
-void chacha20_block(u32 *state, void *stream);
-void crypto_chacha20_init(u32 *state, struct chacha20_ctx *ctx, u8 *iv);
-int crypto_chacha20_setkey(struct crypto_tfm *tfm, const u8 *key,
- unsigned int keysize);
-int crypto_chacha20_crypt(struct blkcipher_desc *desc, struct scatterlist *dst,
- struct scatterlist *src, unsigned int nbytes);
-
#endif