Commit 193188e5 authored by Cristian Stoica's avatar Cristian Stoica Committed by Herbert Xu

crypto: chacha20poly1305 - export CHACHAPOLY_IV_SIZE

Move CHACHAPOLY_IV_SIZE to header file, so it can be reused.
Signed-off-by: default avatarCristian Stoica <cristian.stoica@nxp.com>
Signed-off-by: default avatarHoria Geantă <horia.geanta@nxp.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent c99d4a24
...@@ -22,8 +22,6 @@ ...@@ -22,8 +22,6 @@
#include "internal.h" #include "internal.h"
#define CHACHAPOLY_IV_SIZE 12
struct chachapoly_instance_ctx { struct chachapoly_instance_ctx {
struct crypto_skcipher_spawn chacha; struct crypto_skcipher_spawn chacha;
struct crypto_ahash_spawn poly; struct crypto_ahash_spawn poly;
......
...@@ -13,6 +13,7 @@ ...@@ -13,6 +13,7 @@
#define CHACHA20_IV_SIZE 16 #define CHACHA20_IV_SIZE 16
#define CHACHA20_KEY_SIZE 32 #define CHACHA20_KEY_SIZE 32
#define CHACHA20_BLOCK_SIZE 64 #define CHACHA20_BLOCK_SIZE 64
#define CHACHAPOLY_IV_SIZE 12
struct chacha20_ctx { struct chacha20_ctx {
u32 key[8]; u32 key[8];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment