blob: caaa470389e0ea0c5e29f446590822d2c7d82f06 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Martin Willi31d72472015-07-16 19:14:00 +02002/*
3 * Common values for the ChaCha20 algorithm
4 */
5
6#ifndef _CRYPTO_CHACHA20_H
7#define _CRYPTO_CHACHA20_H
8
Ard Biesheuvel9ae433b2016-12-09 14:33:51 +00009#include <crypto/skcipher.h>
Martin Willi31d72472015-07-16 19:14:00 +020010#include <linux/types.h>
11#include <linux/crypto.h>
12
13#define CHACHA20_IV_SIZE 16
14#define CHACHA20_KEY_SIZE 32
15#define CHACHA20_BLOCK_SIZE 64
16
17struct chacha20_ctx {
18 u32 key[8];
19};
20
Theodore Ts'oe192be92016-06-12 18:13:36 -040021void chacha20_block(u32 *state, void *stream);
Martin Willi31d72472015-07-16 19:14:00 +020022void crypto_chacha20_init(u32 *state, struct chacha20_ctx *ctx, u8 *iv);
Ard Biesheuvel9ae433b2016-12-09 14:33:51 +000023int crypto_chacha20_setkey(struct crypto_skcipher *tfm, const u8 *key,
Martin Willi31d72472015-07-16 19:14:00 +020024 unsigned int keysize);
Ard Biesheuvel9ae433b2016-12-09 14:33:51 +000025int crypto_chacha20_crypt(struct skcipher_request *req);
Martin Willi31d72472015-07-16 19:14:00 +020026
27#endif