]> git.sesse.net Git - bcachefs-tools-debian/blob - include/crypto/chacha.h
rust: bump rpassword to v7.x
[bcachefs-tools-debian] / include / crypto / chacha.h
1 /*
2  * Common values for the ChaCha20 algorithm
3  */
4
5 #ifndef _CRYPTO_CHACHA20_H
6 #define _CRYPTO_CHACHA20_H
7
8 #include <linux/types.h>
9 #include <linux/crypto.h>
10
11 #define CHACHA_IV_SIZE  16
12 #define CHACHA_KEY_SIZE 32
13 #define CHACHA_BLOCK_SIZE       64
14
15 #endif