blob: 2fda384e3b79a5de3766a446ae52fa51ed977a8a [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Yen Lin5b1a5452012-04-05 11:54:58 +00002/*
3 * Copyright (c) 2011 The Chromium OS Authors.
4 * (C) Copyright 2010 - 2011 NVIDIA Corporation <www.nvidia.com>
Yen Lin5b1a5452012-04-05 11:54:58 +00005 */
6
7#ifndef _AES_REF_H_
8#define _AES_REF_H_
9
Marek Vasuta8a752c2014-03-05 19:59:52 +010010#ifdef USE_HOSTCC
11/* Define compat stuff for use in fw_* tools. */
12typedef unsigned char u8;
13typedef unsigned int u32;
14#define debug(...) do {} while (0)
15#endif
16
Yen Lin5b1a5452012-04-05 11:54:58 +000017/*
18 * AES encryption library, with small code size, supporting only 128-bit AES
19 *
20 * AES is a stream cipher which works a block at a time, with each block
21 * in this case being AES_KEY_LENGTH bytes.
22 */
23
24enum {
25 AES_STATECOLS = 4, /* columns in the state & expanded key */
26 AES_KEYCOLS = 4, /* columns in a key */
27 AES_ROUNDS = 10, /* rounds in encryption */
28
29 AES_KEY_LENGTH = 128 / 8,
30 AES_EXPAND_KEY_LENGTH = 4 * AES_STATECOLS * (AES_ROUNDS + 1),
31};
32
33/**
Marek Vasut957ba852014-03-05 19:58:36 +010034 * aes_expand_key() - Expand the AES key
35 *
Yen Lin5b1a5452012-04-05 11:54:58 +000036 * Expand a key into a key schedule, which is then used for the other
37 * operations.
38 *
Marek Vasut957ba852014-03-05 19:58:36 +010039 * @key Key, of length AES_KEY_LENGTH bytes
40 * @expkey Buffer to place expanded key, AES_EXPAND_KEY_LENGTH
Yen Lin5b1a5452012-04-05 11:54:58 +000041 */
42void aes_expand_key(u8 *key, u8 *expkey);
43
44/**
Marek Vasut957ba852014-03-05 19:58:36 +010045 * aes_encrypt() - Encrypt single block of data with AES 128
Yen Lin5b1a5452012-04-05 11:54:58 +000046 *
Marek Vasut957ba852014-03-05 19:58:36 +010047 * @in Input data
48 * @expkey Expanded key to use for encryption (from aes_expand_key())
49 * @out Output data
Yen Lin5b1a5452012-04-05 11:54:58 +000050 */
51void aes_encrypt(u8 *in, u8 *expkey, u8 *out);
52
53/**
Marek Vasut957ba852014-03-05 19:58:36 +010054 * aes_decrypt() - Decrypt single block of data with AES 128
Yen Lin5b1a5452012-04-05 11:54:58 +000055 *
Marek Vasut957ba852014-03-05 19:58:36 +010056 * @in Input data
57 * @expkey Expanded key to use for decryption (from aes_expand_key())
58 * @out Output data
Yen Lin5b1a5452012-04-05 11:54:58 +000059 */
60void aes_decrypt(u8 *in, u8 *expkey, u8 *out);
61
Marek Vasut6e7b9f42014-03-05 19:58:37 +010062/**
Stephen Warren53eb7682014-04-18 10:28:58 -060063 * Apply chain data to the destination using EOR
64 *
65 * Each array is of length AES_KEY_LENGTH.
66 *
67 * @cbc_chain_data Chain data
68 * @src Source data
69 * @dst Destination data, which is modified here
70 */
71void aes_apply_cbc_chain_data(u8 *cbc_chain_data, u8 *src, u8 *dst);
72
73/**
Marek Vasut6e7b9f42014-03-05 19:58:37 +010074 * aes_cbc_encrypt_blocks() - Encrypt multiple blocks of data with AES CBC.
75 *
76 * @key_exp Expanded key to use
Андрей Мозжухинaf09eba2018-01-03 15:43:56 +030077 * @iv Initialization vector
Marek Vasut6e7b9f42014-03-05 19:58:37 +010078 * @src Source data to encrypt
79 * @dst Destination buffer
80 * @num_aes_blocks Number of AES blocks to encrypt
81 */
Андрей Мозжухинaf09eba2018-01-03 15:43:56 +030082void aes_cbc_encrypt_blocks(u8 *key_exp, u8 *iv, u8 *src, u8 *dst,
83 u32 num_aes_blocks);
Marek Vasut6e7b9f42014-03-05 19:58:37 +010084
Marek Vasutdc24bb62014-03-05 19:58:38 +010085/**
86 * Decrypt multiple blocks of data with AES CBC.
87 *
88 * @key_exp Expanded key to use
Андрей Мозжухинaf09eba2018-01-03 15:43:56 +030089 * @iv Initialization vector
Marek Vasutdc24bb62014-03-05 19:58:38 +010090 * @src Source data to decrypt
91 * @dst Destination buffer
92 * @num_aes_blocks Number of AES blocks to decrypt
93 */
Андрей Мозжухинaf09eba2018-01-03 15:43:56 +030094void aes_cbc_decrypt_blocks(u8 *key_exp, u8 *iv, u8 *src, u8 *dst,
95 u32 num_aes_blocks);
Marek Vasutdc24bb62014-03-05 19:58:38 +010096
Yen Lin5b1a5452012-04-05 11:54:58 +000097#endif /* _AES_REF_H_ */