summaryrefslogtreecommitdiff
path: root/include/crypto/chacha20.h
blob: 1cdc77babedead5b1333a02fb99232a44c7dcdaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Common values for the ChaCha20 algorithm
 */

#ifndef _CRYPTO_CHACHA20_H
#define _CRYPTO_CHACHA20_H

#include <linux/types.h>
#include <linux/crypto.h>

#define CHACHA20_IV_SIZE	16
#define CHACHA20_KEY_SIZE	32
#define CHACHA20_BLOCK_SIZE	64

#endif