This source file includes following definitions.
- chacha20_block
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 #ifndef _CRYPTO_CHACHA_H
16 #define _CRYPTO_CHACHA_H
17
18 #include <crypto/skcipher.h>
19 #include <linux/types.h>
20 #include <linux/crypto.h>
21
22
23 #define CHACHA_IV_SIZE 16
24
25 #define CHACHA_KEY_SIZE 32
26 #define CHACHA_BLOCK_SIZE 64
27 #define CHACHAPOLY_IV_SIZE 12
28
29
30 #define XCHACHA_IV_SIZE 32
31
32 struct chacha_ctx {
33 u32 key[8];
34 int nrounds;
35 };
36
37 void chacha_block(u32 *state, u8 *stream, int nrounds);
38 static inline void chacha20_block(u32 *state, u8 *stream)
39 {
40 chacha_block(state, stream, 20);
41 }
42 void hchacha_block(const u32 *in, u32 *out, int nrounds);
43
44 void crypto_chacha_init(u32 *state, const struct chacha_ctx *ctx, const u8 *iv);
45
46 int crypto_chacha20_setkey(struct crypto_skcipher *tfm, const u8 *key,
47 unsigned int keysize);
48 int crypto_chacha12_setkey(struct crypto_skcipher *tfm, const u8 *key,
49 unsigned int keysize);
50
51 int crypto_chacha_crypt(struct skcipher_request *req);
52 int crypto_xchacha_crypt(struct skcipher_request *req);
53
54 #endif