blob: c70eda6f981578e3fd42ca97bedcf5b9ea6f0cf5 [file] [log] [blame]
Yen Lin5b1a5452012-04-05 11:54:58 +00001/*
2 * Copyright (c) 2011 The Chromium OS Authors.
3 * (C) Copyright 2010 - 2011 NVIDIA Corporation <www.nvidia.com>
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Yen Lin5b1a5452012-04-05 11:54:58 +00006 */
7
8#ifndef _AES_REF_H_
9#define _AES_REF_H_
10
11/*
12 * AES encryption library, with small code size, supporting only 128-bit AES
13 *
14 * AES is a stream cipher which works a block at a time, with each block
15 * in this case being AES_KEY_LENGTH bytes.
16 */
17
18enum {
19 AES_STATECOLS = 4, /* columns in the state & expanded key */
20 AES_KEYCOLS = 4, /* columns in a key */
21 AES_ROUNDS = 10, /* rounds in encryption */
22
23 AES_KEY_LENGTH = 128 / 8,
24 AES_EXPAND_KEY_LENGTH = 4 * AES_STATECOLS * (AES_ROUNDS + 1),
25};
26
27/**
Marek Vasut957ba852014-03-05 19:58:36 +010028 * aes_expand_key() - Expand the AES key
29 *
Yen Lin5b1a5452012-04-05 11:54:58 +000030 * Expand a key into a key schedule, which is then used for the other
31 * operations.
32 *
Marek Vasut957ba852014-03-05 19:58:36 +010033 * @key Key, of length AES_KEY_LENGTH bytes
34 * @expkey Buffer to place expanded key, AES_EXPAND_KEY_LENGTH
Yen Lin5b1a5452012-04-05 11:54:58 +000035 */
36void aes_expand_key(u8 *key, u8 *expkey);
37
38/**
Marek Vasut957ba852014-03-05 19:58:36 +010039 * aes_encrypt() - Encrypt single block of data with AES 128
Yen Lin5b1a5452012-04-05 11:54:58 +000040 *
Marek Vasut957ba852014-03-05 19:58:36 +010041 * @in Input data
42 * @expkey Expanded key to use for encryption (from aes_expand_key())
43 * @out Output data
Yen Lin5b1a5452012-04-05 11:54:58 +000044 */
45void aes_encrypt(u8 *in, u8 *expkey, u8 *out);
46
47/**
Marek Vasut957ba852014-03-05 19:58:36 +010048 * aes_decrypt() - Decrypt single block of data with AES 128
Yen Lin5b1a5452012-04-05 11:54:58 +000049 *
Marek Vasut957ba852014-03-05 19:58:36 +010050 * @in Input data
51 * @expkey Expanded key to use for decryption (from aes_expand_key())
52 * @out Output data
Yen Lin5b1a5452012-04-05 11:54:58 +000053 */
54void aes_decrypt(u8 *in, u8 *expkey, u8 *out);
55
56#endif /* _AES_REF_H_ */