1 | /*
|
---|
2 | * Copyright (C) 2012 Michael Brown <[email protected]>.
|
---|
3 | *
|
---|
4 | * This program is free software; you can redistribute it and/or
|
---|
5 | * modify it under the terms of the GNU General Public License as
|
---|
6 | * published by the Free Software Foundation; either version 2 of the
|
---|
7 | * License, or any later version.
|
---|
8 | *
|
---|
9 | * This program is distributed in the hope that it will be useful, but
|
---|
10 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
12 | * General Public License for more details.
|
---|
13 | *
|
---|
14 | * You should have received a copy of the GNU General Public License
|
---|
15 | * along with this program; if not, write to the Free Software
|
---|
16 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
---|
17 | */
|
---|
18 |
|
---|
19 | FILE_LICENCE ( GPL2_OR_LATER );
|
---|
20 |
|
---|
21 | /** @file
|
---|
22 | *
|
---|
23 | * SHA-256 tests
|
---|
24 | *
|
---|
25 | */
|
---|
26 |
|
---|
27 | #include <stdint.h>
|
---|
28 | #include <ipxe/sha256.h>
|
---|
29 | #include <ipxe/test.h>
|
---|
30 | #include "digest_test.h"
|
---|
31 |
|
---|
32 | /** An SHA-256 test vector */
|
---|
33 | struct sha256_test_vector {
|
---|
34 | /** Test data */
|
---|
35 | void *data;
|
---|
36 | /** Test data length */
|
---|
37 | size_t len;
|
---|
38 | /** Expected digest */
|
---|
39 | uint8_t digest[SHA256_DIGEST_SIZE];
|
---|
40 | };
|
---|
41 |
|
---|
42 | /** SHA-256 test vectors */
|
---|
43 | static struct sha256_test_vector sha256_test_vectors[] = {
|
---|
44 | /* Empty test data
|
---|
45 | *
|
---|
46 | * Expected digest value obtained from "sha256sum /dev/null"
|
---|
47 | */
|
---|
48 | { NULL, 0,
|
---|
49 | { 0xe3, 0xb0, 0xc4, 0x42, 0x98, 0xfc, 0x1c, 0x14, 0x9a, 0xfb, 0xf4,
|
---|
50 | 0xc8, 0x99, 0x6f, 0xb9, 0x24, 0x27, 0xae, 0x41, 0xe4, 0x64, 0x9b,
|
---|
51 | 0x93, 0x4c, 0xa4, 0x95, 0x99, 0x1b, 0x78, 0x52, 0xb8, 0x55 } },
|
---|
52 | /* Test data and expected digests taken from the NIST
|
---|
53 | * Cryptographic Toolkit Algorithm Examples at
|
---|
54 | * http://csrc.nist.gov/groups/ST/toolkit/documents/Examples/SHA256.pdf
|
---|
55 | */
|
---|
56 | { "abc", 3,
|
---|
57 | { 0xba, 0x78, 0x16, 0xbf, 0x8f, 0x01, 0xcf, 0xea, 0x41, 0x41, 0x40,
|
---|
58 | 0xde, 0x5d, 0xae, 0x22, 0x23, 0xb0, 0x03, 0x61, 0xa3, 0x96, 0x17,
|
---|
59 | 0x7a, 0x9c, 0xb4, 0x10, 0xff, 0x61, 0xf2, 0x00, 0x15, 0xad } },
|
---|
60 | { "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 56,
|
---|
61 | { 0x24, 0x8d, 0x6a, 0x61, 0xd2, 0x06, 0x38, 0xb8, 0xe5, 0xc0, 0x26,
|
---|
62 | 0x93, 0x0c, 0x3e, 0x60, 0x39, 0xa3, 0x3c, 0xe4, 0x59, 0x64, 0xff,
|
---|
63 | 0x21, 0x67, 0xf6, 0xec, 0xed, 0xd4, 0x19, 0xdb, 0x06, 0xc1 } },
|
---|
64 | };
|
---|
65 |
|
---|
66 | /** SHA-256 test fragment lists */
|
---|
67 | static struct digest_test_fragments sha256_test_fragments[] = {
|
---|
68 | { { 0, -1UL, } },
|
---|
69 | { { 1, 1, 1, 1, 1, 1, 1, 1 } },
|
---|
70 | { { 2, 0, 23, 4, 6, 1, 0 } },
|
---|
71 | };
|
---|
72 |
|
---|
73 | /**
|
---|
74 | * Perform SHA-256 self-test
|
---|
75 | *
|
---|
76 | */
|
---|
77 | static void sha256_test_exec ( void ) {
|
---|
78 | struct digest_algorithm *digest = &sha256_algorithm;
|
---|
79 | struct sha256_test_vector *test;
|
---|
80 | unsigned int i;
|
---|
81 | unsigned int j;
|
---|
82 |
|
---|
83 | for ( i = 0 ; i < ( sizeof ( sha256_test_vectors ) /
|
---|
84 | sizeof ( sha256_test_vectors[0] ) ) ; i++ ) {
|
---|
85 | test = &sha256_test_vectors[i];
|
---|
86 | /* Test with a single pass */
|
---|
87 | digest_ok ( digest, NULL, test->data, test->len, test->digest );
|
---|
88 | /* Test with fragment lists */
|
---|
89 | for ( j = 0 ; j < ( sizeof ( sha256_test_fragments ) /
|
---|
90 | sizeof ( sha256_test_fragments[0] )); j++ ){
|
---|
91 | digest_ok ( digest, &sha256_test_fragments[j],
|
---|
92 | test->data, test->len, test->digest );
|
---|
93 | }
|
---|
94 | }
|
---|
95 | }
|
---|
96 |
|
---|
97 | /** SHA-256 self-test */
|
---|
98 | struct self_test sha256_test __self_test = {
|
---|
99 | .name = "sha256",
|
---|
100 | .exec = sha256_test_exec,
|
---|
101 | };
|
---|