Browse Source

[test] Add NIST self-tests for AES128 and AES256 in ECB mode

Signed-off-by: Michael Brown <mcb30@ipxe.org>
tags/v1.20.1
Michael Brown 8 years ago
parent
commit
cbb07f0ef7
1 changed files with 38 additions and 0 deletions
  1. 38
    0
      src/tests/aes_test.c

+ 38
- 0
src/tests/aes_test.c View File

30
  * These test vectors are provided by NIST as part of the
30
  * These test vectors are provided by NIST as part of the
31
  * Cryptographic Toolkit Examples, downloadable from:
31
  * Cryptographic Toolkit Examples, downloadable from:
32
  *
32
  *
33
+ *    http://csrc.nist.gov/groups/ST/toolkit/documents/Examples/AES_Core_All.pdf
34
+ *    http://csrc.nist.gov/groups/ST/toolkit/documents/Examples/AES_ECB.pdf
33
  *    http://csrc.nist.gov/groups/ST/toolkit/documents/Examples/AES_CBC.pdf
35
  *    http://csrc.nist.gov/groups/ST/toolkit/documents/Examples/AES_CBC.pdf
34
  *
36
  *
35
  */
37
  */
55
 	      0x2c, 0x07, 0x3b, 0x61, 0x08, 0xd7, 0x2d, 0x98, 0x10,	\
57
 	      0x2c, 0x07, 0x3b, 0x61, 0x08, 0xd7, 0x2d, 0x98, 0x10,	\
56
 	      0xa3, 0x09, 0x14, 0xdf, 0xf4 )
58
 	      0xa3, 0x09, 0x14, 0xdf, 0xf4 )
57
 
59
 
60
+/** Dummy initialisation vector used for NIST ECB-mode test vectors */
61
+#define AES_IV_NIST_DUMMY						\
62
+	IV ( 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,	\
63
+	     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 )
64
+
58
 /** Initialisation vector used for NIST CBC-mode test vectors */
65
 /** Initialisation vector used for NIST CBC-mode test vectors */
59
 #define AES_IV_NIST_CBC							\
66
 #define AES_IV_NIST_CBC							\
60
 	IV ( 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,	\
67
 	IV ( 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,	\
71
 		    0xf6, 0x9f, 0x24, 0x45, 0xdf, 0x4f, 0x9b, 0x17,	\
78
 		    0xf6, 0x9f, 0x24, 0x45, 0xdf, 0x4f, 0x9b, 0x17,	\
72
 		    0xad, 0x2b, 0x41, 0x7b, 0xe6, 0x6c, 0x37, 0x10 )
79
 		    0xad, 0x2b, 0x41, 0x7b, 0xe6, 0x6c, 0x37, 0x10 )
73
 
80
 
81
+/** AES-128-ECB (same test as AES-128-Core) */
82
+CIPHER_TEST ( aes_128_ecb, &aes_ecb_algorithm,
83
+	AES_KEY_NIST_128, AES_IV_NIST_DUMMY, AES_PLAINTEXT_NIST,
84
+	CIPHERTEXT ( 0x3a, 0xd7, 0x7b, 0xb4, 0x0d, 0x7a, 0x36, 0x60,
85
+		     0xa8, 0x9e, 0xca, 0xf3, 0x24, 0x66, 0xef, 0x97,
86
+		     0xf5, 0xd3, 0xd5, 0x85, 0x03, 0xb9, 0x69, 0x9d,
87
+		     0xe7, 0x85, 0x89, 0x5a, 0x96, 0xfd, 0xba, 0xaf,
88
+		     0x43, 0xb1, 0xcd, 0x7f, 0x59, 0x8e, 0xce, 0x23,
89
+		     0x88, 0x1b, 0x00, 0xe3, 0xed, 0x03, 0x06, 0x88,
90
+		     0x7b, 0x0c, 0x78, 0x5e, 0x27, 0xe8, 0xad, 0x3f,
91
+		     0x82, 0x23, 0x20, 0x71, 0x04, 0x72, 0x5d, 0xd4 ) );
92
+
74
 /** AES-128-CBC */
93
 /** AES-128-CBC */
75
 CIPHER_TEST ( aes_128_cbc, &aes_cbc_algorithm,
94
 CIPHER_TEST ( aes_128_cbc, &aes_cbc_algorithm,
76
 	AES_KEY_NIST_128, AES_IV_NIST_CBC, AES_PLAINTEXT_NIST,
95
 	AES_KEY_NIST_128, AES_IV_NIST_CBC, AES_PLAINTEXT_NIST,
83
 		     0x3f, 0xf1, 0xca, 0xa1, 0x68, 0x1f, 0xac, 0x09,
102
 		     0x3f, 0xf1, 0xca, 0xa1, 0x68, 0x1f, 0xac, 0x09,
84
 		     0x12, 0x0e, 0xca, 0x30, 0x75, 0x86, 0xe1, 0xa7 ) );
103
 		     0x12, 0x0e, 0xca, 0x30, 0x75, 0x86, 0xe1, 0xa7 ) );
85
 
104
 
105
+/** AES-256-ECB (same test as AES-256-Core) */
106
+CIPHER_TEST ( aes_256_ecb, &aes_ecb_algorithm,
107
+	AES_KEY_NIST_256, AES_IV_NIST_DUMMY, AES_PLAINTEXT_NIST,
108
+	CIPHERTEXT ( 0xf3, 0xee, 0xd1, 0xbd, 0xb5, 0xd2, 0xa0, 0x3c,
109
+		     0x06, 0x4b, 0x5a, 0x7e, 0x3d, 0xb1, 0x81, 0xf8,
110
+		     0x59, 0x1c, 0xcb, 0x10, 0xd4, 0x10, 0xed, 0x26,
111
+		     0xdc, 0x5b, 0xa7, 0x4a, 0x31, 0x36, 0x28, 0x70,
112
+		     0xb6, 0xed, 0x21, 0xb9, 0x9c, 0xa6, 0xf4, 0xf9,
113
+		     0xf1, 0x53, 0xe7, 0xb1, 0xbe, 0xaf, 0xed, 0x1d,
114
+		     0x23, 0x30, 0x4b, 0x7a, 0x39, 0xf9, 0xf3, 0xff,
115
+		     0x06, 0x7d, 0x8d, 0x8f, 0x9e, 0x24, 0xec, 0xc7 ) );
116
+
86
 /** AES-256-CBC */
117
 /** AES-256-CBC */
87
 CIPHER_TEST ( aes_256_cbc, &aes_cbc_algorithm,
118
 CIPHER_TEST ( aes_256_cbc, &aes_cbc_algorithm,
88
 	AES_KEY_NIST_256, AES_IV_NIST_CBC, AES_PLAINTEXT_NIST,
119
 	AES_KEY_NIST_256, AES_IV_NIST_CBC, AES_PLAINTEXT_NIST,
100
  *
131
  *
101
  */
132
  */
102
 static void aes_test_exec ( void ) {
133
 static void aes_test_exec ( void ) {
134
+	struct cipher_algorithm *ecb = &aes_ecb_algorithm;
103
 	struct cipher_algorithm *cbc = &aes_cbc_algorithm;
135
 	struct cipher_algorithm *cbc = &aes_cbc_algorithm;
104
 	unsigned int keylen;
136
 	unsigned int keylen;
105
 
137
 
106
 	/* Correctness tests */
138
 	/* Correctness tests */
139
+	cipher_ok ( &aes_128_ecb );
107
 	cipher_ok ( &aes_128_cbc );
140
 	cipher_ok ( &aes_128_cbc );
141
+	cipher_ok ( &aes_256_ecb );
108
 	cipher_ok ( &aes_256_cbc );
142
 	cipher_ok ( &aes_256_cbc );
109
 
143
 
110
 	/* Speed tests */
144
 	/* Speed tests */
111
 	for ( keylen = 128 ; keylen <= 256 ; keylen += 128 ) {
145
 	for ( keylen = 128 ; keylen <= 256 ; keylen += 128 ) {
146
+		DBG ( "AES-%d-ECB encryption required %ld cycles per byte\n",
147
+		      keylen, cipher_cost_encrypt ( ecb, ( keylen / 8 ) ) );
148
+		DBG ( "AES-%d-ECB decryption required %ld cycles per byte\n",
149
+		      keylen, cipher_cost_decrypt ( ecb, ( keylen / 8 ) ) );
112
 		DBG ( "AES-%d-CBC encryption required %ld cycles per byte\n",
150
 		DBG ( "AES-%d-CBC encryption required %ld cycles per byte\n",
113
 		      keylen, cipher_cost_encrypt ( cbc, ( keylen / 8 ) ) );
151
 		      keylen, cipher_cost_encrypt ( cbc, ( keylen / 8 ) ) );
114
 		DBG ( "AES-%d-CBC decryption required %ld cycles per byte\n",
152
 		DBG ( "AES-%d-CBC decryption required %ld cycles per byte\n",

Loading…
Cancel
Save