Blame view

include/uboot_aes.h 2.51 KB
5b1a5451d   Yen Lin   Add AES crypto li...
1
2
3
4
  /*
   * Copyright (c) 2011 The Chromium OS Authors.
   * (C) Copyright 2010 - 2011 NVIDIA Corporation <www.nvidia.com>
   *
1a4596601   Wolfgang Denk   Add GPL-2.0+ SPDX...
5
   * SPDX-License-Identifier:	GPL-2.0+
5b1a5451d   Yen Lin   Add AES crypto li...
6
7
8
9
   */
  
  #ifndef _AES_REF_H_
  #define _AES_REF_H_
a8a752c08   Marek Vasut   env: Implement su...
10
11
12
13
14
15
  #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...
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
  /*
   * 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
   * in this case being AES_KEY_LENGTH bytes.
   */
  
  enum {
  	AES_STATECOLS	= 4,	/* columns in the state & expanded key */
  	AES_KEYCOLS	= 4,	/* columns in a key */
  	AES_ROUNDS	= 10,	/* rounds in encryption */
  
  	AES_KEY_LENGTH	= 128 / 8,
  	AES_EXPAND_KEY_LENGTH	= 4 * AES_STATECOLS * (AES_ROUNDS + 1),
  };
  
  /**
957ba85ce   Marek Vasut   aes: Fix kerneldo...
33
34
   * aes_expand_key() - Expand the AES key
   *
5b1a5451d   Yen Lin   Add AES crypto li...
35
36
37
   * Expand a key into a key schedule, which is then used for the other
   * operations.
   *
957ba85ce   Marek Vasut   aes: Fix kerneldo...
38
39
   * @key		Key, of length AES_KEY_LENGTH bytes
   * @expkey	Buffer to place expanded key, AES_EXPAND_KEY_LENGTH
5b1a5451d   Yen Lin   Add AES crypto li...
40
41
42
43
   */
  void aes_expand_key(u8 *key, u8 *expkey);
  
  /**
957ba85ce   Marek Vasut   aes: Fix kerneldo...
44
   * aes_encrypt() - Encrypt single block of data with AES 128
5b1a5451d   Yen Lin   Add AES crypto li...
45
   *
957ba85ce   Marek Vasut   aes: Fix kerneldo...
46
47
48
   * @in		Input data
   * @expkey	Expanded key to use for encryption (from aes_expand_key())
   * @out		Output data
5b1a5451d   Yen Lin   Add AES crypto li...
49
50
51
52
   */
  void aes_encrypt(u8 *in, u8 *expkey, u8 *out);
  
  /**
957ba85ce   Marek Vasut   aes: Fix kerneldo...
53
   * aes_decrypt() - Decrypt single block of data with AES 128
5b1a5451d   Yen Lin   Add AES crypto li...
54
   *
957ba85ce   Marek Vasut   aes: Fix kerneldo...
55
56
57
   * @in		Input data
   * @expkey	Expanded key to use for decryption (from aes_expand_key())
   * @out		Output data
5b1a5451d   Yen Lin   Add AES crypto li...
58
59
   */
  void aes_decrypt(u8 *in, u8 *expkey, u8 *out);
6e7b9f4fa   Marek Vasut   aes: Move the AES...
60
  /**
53eb768df   Stephen Warren   aes: make apply_c...
61
62
63
64
65
66
67
68
69
70
71
   * Apply chain data to the destination using EOR
   *
   * Each array is of length AES_KEY_LENGTH.
   *
   * @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...
72
73
74
   * aes_cbc_encrypt_blocks() - Encrypt multiple blocks of data with AES CBC.
   *
   * @key_exp		Expanded key to use
af09eba64   Андрей Мозжухин   aes: Allow non-ze...
75
   * @iv			Initialization vector
6e7b9f4fa   Marek Vasut   aes: Move the AES...
76
77
78
79
   * @src			Source data to encrypt
   * @dst			Destination buffer
   * @num_aes_blocks	Number of AES blocks to encrypt
   */
af09eba64   Андрей Мозжухин   aes: Allow non-ze...
80
81
  void aes_cbc_encrypt_blocks(u8 *key_exp, u8 *iv, u8 *src, u8 *dst,
  			    u32 num_aes_blocks);
6e7b9f4fa   Marek Vasut   aes: Move the AES...
82

dc24bb6dd   Marek Vasut   aes: Implement AE...
83
84
85
86
  /**
   * Decrypt multiple blocks of data with AES CBC.
   *
   * @key_exp		Expanded key to use
af09eba64   Андрей Мозжухин   aes: Allow non-ze...
87
   * @iv			Initialization vector
dc24bb6dd   Marek Vasut   aes: Implement AE...
88
89
90
91
   * @src			Source data to decrypt
   * @dst			Destination buffer
   * @num_aes_blocks	Number of AES blocks to decrypt
   */
af09eba64   Андрей Мозжухин   aes: Allow non-ze...
92
93
  void aes_cbc_decrypt_blocks(u8 *key_exp, u8 *iv, u8 *src, u8 *dst,
  			    u32 num_aes_blocks);
dc24bb6dd   Marek Vasut   aes: Implement AE...
94

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