Blame view

include/uboot_aes.h 3.23 KB
83d290c56   Tom Rini   SPDX: Convert all...
1
  /* SPDX-License-Identifier: GPL-2.0+ */
5b1a5451d   Yen Lin   Add AES crypto li...
2
3
4
  /*
   * Copyright (c) 2011 The Chromium OS Authors.
   * (C) Copyright 2010 - 2011 NVIDIA Corporation <www.nvidia.com>
5b1a5451d   Yen Lin   Add AES crypto li...
5
6
7
8
   */
  
  #ifndef _AES_REF_H_
  #define _AES_REF_H_
a8a752c08   Marek Vasut   env: Implement su...
9
10
11
12
13
14
  #ifdef USE_HOSTCC
  /* Define compat stuff for use in fw_* tools. */
  typedef unsigned char u8;
  typedef unsigned int u32;
  #define debug(...) do {} while (0)
  #endif
5b1a5451d   Yen Lin   Add AES crypto li...
15
16
17
18
  /*
   * AES encryption library, with small code size, supporting only 128-bit AES
   *
   * AES is a stream cipher which works a block at a time, with each block
7012c04ef   Philippe Reynes   aes: add a define...
19
   * in this case being AES_BLOCK_LENGTH bytes.
5b1a5451d   Yen Lin   Add AES crypto li...
20
21
22
23
   */
  
  enum {
  	AES_STATECOLS	= 4,	/* columns in the state & expanded key */
8302d1708   Philippe Reynes   aes: add support ...
24
25
26
27
28
29
30
31
32
33
34
35
  	AES128_KEYCOLS	= 4,	/* columns in a key for aes128 */
  	AES192_KEYCOLS	= 6,	/* columns in a key for aes128 */
  	AES256_KEYCOLS	= 8,	/* columns in a key for aes128 */
  	AES128_ROUNDS	= 10,	/* rounds in encryption for aes128 */
  	AES192_ROUNDS	= 12,	/* rounds in encryption for aes192 */
  	AES256_ROUNDS	= 14,	/* rounds in encryption for aes256 */
  	AES128_KEY_LENGTH	= 128 / 8,
  	AES192_KEY_LENGTH	= 192 / 8,
  	AES256_KEY_LENGTH	= 256 / 8,
  	AES128_EXPAND_KEY_LENGTH = 4 * AES_STATECOLS * (AES128_ROUNDS + 1),
  	AES192_EXPAND_KEY_LENGTH = 4 * AES_STATECOLS * (AES192_ROUNDS + 1),
  	AES256_EXPAND_KEY_LENGTH = 4 * AES_STATECOLS * (AES256_ROUNDS + 1),
7012c04ef   Philippe Reynes   aes: add a define...
36
  	AES_BLOCK_LENGTH	= 128 / 8,
5b1a5451d   Yen Lin   Add AES crypto li...
37
38
39
  };
  
  /**
957ba85ce   Marek Vasut   aes: Fix kerneldo...
40
41
   * aes_expand_key() - Expand the AES key
   *
5b1a5451d   Yen Lin   Add AES crypto li...
42
43
44
   * Expand a key into a key schedule, which is then used for the other
   * operations.
   *
8302d1708   Philippe Reynes   aes: add support ...
45
46
   * @key		Key
   * @key_size	Size of the key (in bits)
957ba85ce   Marek Vasut   aes: Fix kerneldo...
47
   * @expkey	Buffer to place expanded key, AES_EXPAND_KEY_LENGTH
5b1a5451d   Yen Lin   Add AES crypto li...
48
   */
8302d1708   Philippe Reynes   aes: add support ...
49
  void aes_expand_key(u8 *key, u32 key_size, u8 *expkey);
5b1a5451d   Yen Lin   Add AES crypto li...
50
51
  
  /**
957ba85ce   Marek Vasut   aes: Fix kerneldo...
52
   * aes_encrypt() - Encrypt single block of data with AES 128
5b1a5451d   Yen Lin   Add AES crypto li...
53
   *
8302d1708   Philippe Reynes   aes: add support ...
54
   * @key_size	Size of the aes key (in bits)
957ba85ce   Marek Vasut   aes: Fix kerneldo...
55
56
57
   * @in		Input data
   * @expkey	Expanded key to use for encryption (from aes_expand_key())
   * @out		Output data
5b1a5451d   Yen Lin   Add AES crypto li...
58
   */
8302d1708   Philippe Reynes   aes: add support ...
59
  void aes_encrypt(u32 key_size, u8 *in, u8 *expkey, u8 *out);
5b1a5451d   Yen Lin   Add AES crypto li...
60
61
  
  /**
957ba85ce   Marek Vasut   aes: Fix kerneldo...
62
   * aes_decrypt() - Decrypt single block of data with AES 128
5b1a5451d   Yen Lin   Add AES crypto li...
63
   *
8302d1708   Philippe Reynes   aes: add support ...
64
   * @key_size	Size of the aes key (in bits)
957ba85ce   Marek Vasut   aes: Fix kerneldo...
65
66
67
   * @in		Input data
   * @expkey	Expanded key to use for decryption (from aes_expand_key())
   * @out		Output data
5b1a5451d   Yen Lin   Add AES crypto li...
68
   */
8302d1708   Philippe Reynes   aes: add support ...
69
  void aes_decrypt(u32 key_size, u8 *in, u8 *expkey, u8 *out);
5b1a5451d   Yen Lin   Add AES crypto li...
70

6e7b9f4fa   Marek Vasut   aes: Move the AES...
71
  /**
53eb768df   Stephen Warren   aes: make apply_c...
72
73
   * Apply chain data to the destination using EOR
   *
7012c04ef   Philippe Reynes   aes: add a define...
74
   * Each array is of length AES_BLOCK_LENGTH.
53eb768df   Stephen Warren   aes: make apply_c...
75
76
77
78
79
80
81
82
   *
   * @cbc_chain_data	Chain data
   * @src			Source data
   * @dst			Destination data, which is modified here
   */
  void aes_apply_cbc_chain_data(u8 *cbc_chain_data, u8 *src, u8 *dst);
  
  /**
6e7b9f4fa   Marek Vasut   aes: Move the AES...
83
84
   * aes_cbc_encrypt_blocks() - Encrypt multiple blocks of data with AES CBC.
   *
8302d1708   Philippe Reynes   aes: add support ...
85
   * @key_size		Size of the aes key (in bits)
6e7b9f4fa   Marek Vasut   aes: Move the AES...
86
   * @key_exp		Expanded key to use
af09eba64   Андрей Мозжухин   aes: Allow non-ze...
87
   * @iv			Initialization vector
6e7b9f4fa   Marek Vasut   aes: Move the AES...
88
89
90
91
   * @src			Source data to encrypt
   * @dst			Destination buffer
   * @num_aes_blocks	Number of AES blocks to encrypt
   */
8302d1708   Philippe Reynes   aes: add support ...
92
  void aes_cbc_encrypt_blocks(u32 key_size, u8 *key_exp, u8 *iv, u8 *src, u8 *dst,
af09eba64   Андрей Мозжухин   aes: Allow non-ze...
93
  			    u32 num_aes_blocks);
6e7b9f4fa   Marek Vasut   aes: Move the AES...
94

dc24bb6dd   Marek Vasut   aes: Implement AE...
95
96
97
  /**
   * Decrypt multiple blocks of data with AES CBC.
   *
8302d1708   Philippe Reynes   aes: add support ...
98
   * @key_size		Size of the aes key (in bits)
dc24bb6dd   Marek Vasut   aes: Implement AE...
99
   * @key_exp		Expanded key to use
af09eba64   Андрей Мозжухин   aes: Allow non-ze...
100
   * @iv			Initialization vector
dc24bb6dd   Marek Vasut   aes: Implement AE...
101
102
103
104
   * @src			Source data to decrypt
   * @dst			Destination buffer
   * @num_aes_blocks	Number of AES blocks to decrypt
   */
8302d1708   Philippe Reynes   aes: add support ...
105
  void aes_cbc_decrypt_blocks(u32 key_size, u8 *key_exp, u8 *iv, u8 *src, u8 *dst,
af09eba64   Андрей Мозжухин   aes: Allow non-ze...
106
  			    u32 num_aes_blocks);
dc24bb6dd   Marek Vasut   aes: Implement AE...
107

5b1a5451d   Yen Lin   Add AES crypto li...
108
  #endif /* _AES_REF_H_ */