Setting tag sliver-openvswitch-2.2.90-1
[sliver-openvswitch.git] / tests / test-sha1.c
1 /*
2  * Copyright (c) 2009, 2011, 2012 Nicira, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <config.h>
18 #include "sha1.h"
19 #include <inttypes.h>
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <string.h>
23 #include "random.h"
24 #include "util.h"
25 #include "ovstest.h"
26
27 #undef NDEBUG
28 #include <assert.h>
29
30 struct test_vector {
31     char *data;
32     size_t size;
33     const uint8_t output[20];
34 };
35
36 static const struct test_vector vectors[] = {
37     /* FIPS 180-1. */
38     {
39         "abc", 3,
40         { 0xA9, 0x99, 0x3E, 0x36, 0x47, 0x06, 0x81, 0x6A, 0xBA, 0x3E,
41           0x25, 0x71, 0x78, 0x50, 0xC2, 0x6C, 0x9C, 0xD0, 0xD8, 0x9D }
42     }, {
43         "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", 56,
44         { 0x84, 0x98, 0x3E, 0x44, 0x1C, 0x3B, 0xD2, 0x6E, 0xBA, 0xAE,
45           0x4A, 0xA1, 0xF9, 0x51, 0x29, 0xE5, 0xE5, 0x46, 0x70, 0xF1 },
46     },
47
48     /* RFC 3174. */
49     {
50         "0123456701234567012345670123456701234567012345670123456701234567"
51         "0123456701234567012345670123456701234567012345670123456701234567"
52         "0123456701234567012345670123456701234567012345670123456701234567"
53         "0123456701234567012345670123456701234567012345670123456701234567"
54         "0123456701234567012345670123456701234567012345670123456701234567"
55         "0123456701234567012345670123456701234567012345670123456701234567"
56         "0123456701234567012345670123456701234567012345670123456701234567"
57         "0123456701234567012345670123456701234567012345670123456701234567"
58         "0123456701234567012345670123456701234567012345670123456701234567"
59         "0123456701234567012345670123456701234567012345670123456701234567",
60         64 * 10,
61         { 0xDE, 0xA3, 0x56, 0xA2, 0xCD, 0xDD, 0x90, 0xC7, 0xA7, 0xEC,
62           0xED, 0xC5, 0xEB, 0xB5, 0x63, 0x93, 0x4F, 0x46, 0x04, 0x52 },
63     },
64
65     /* http://www.febooti.com/products/filetweak/members/hash-and-crc/test-vectors/ */
66     {
67         "", 0,
68         { 0xda, 0x39, 0xa3, 0xee, 0x5e, 0x6b, 0x4b, 0x0d, 0x32, 0x55,
69           0xbf, 0xef, 0x95, 0x60, 0x18, 0x90, 0xaf, 0xd8, 0x07, 0x09 }
70     }, {
71         "Test vector from febooti.com", 28,
72         { 0xa7, 0x63, 0x17, 0x95, 0xf6, 0xd5, 0x9c, 0xd6, 0xd1, 0x4e,
73           0xbd, 0x00, 0x58, 0xa6, 0x39, 0x4a, 0x4b, 0x93, 0xd8, 0x68 }
74     },
75
76     /* http://en.wikipedia.org/wiki/SHA_hash_functions */
77     {
78         "The quick brown fox jumps over the lazy dog", 43,
79         { 0x2f, 0xd4, 0xe1, 0xc6, 0x7a, 0x2d, 0x28, 0xfc, 0xed, 0x84,
80           0x9e, 0xe1, 0xbb, 0x76, 0xe7, 0x39, 0x1b, 0x93, 0xeb, 0x12 },
81     }, {
82         "The quick brown fox jumps over the lazy cog", 43,
83         { 0xde, 0x9f, 0x2c, 0x7f, 0xd2, 0x5e, 0x1b, 0x3a, 0xfa, 0xd3,
84           0xe8, 0x5a, 0x0b, 0xd1, 0x7d, 0x9b, 0x10, 0x0d, 0xb4, 0xb3 },
85     },
86
87     /* http://www.hashcash.org/docs/sha1-hashcash.html */
88     {
89         "0:030626:adam@cypherspace.org:6470e06d773e05a8", 46,
90         { 0x00, 0x00, 0x00, 0x00, 0xc7, 0x0d, 0xb7, 0x38, 0x9f, 0x24,
91           0x1b, 0x8f, 0x44, 0x1f, 0xcf, 0x06, 0x8a, 0xea, 0xd3, 0xf0 },
92     },
93 };
94
95 static void
96 test_one(const struct test_vector *vec)
97 {
98     uint8_t md[SHA1_DIGEST_SIZE];
99     int i;
100
101     /* All at once. */
102     sha1_bytes(vec->data, vec->size, md);
103     assert(!memcmp(md, vec->output, SHA1_DIGEST_SIZE));
104
105     /* In two pieces. */
106     for (i = 0; i < 20; i++) {
107         int n0 = vec->size ? random_range(vec->size) : 0;
108         int n1 = vec->size - n0;
109         struct sha1_ctx sha1;
110
111         sha1_init(&sha1);
112         sha1_update(&sha1, vec->data, n0);
113         sha1_update(&sha1, vec->data + n0, n1);
114         sha1_final(&sha1, md);
115         assert(!memcmp(md, vec->output, SHA1_DIGEST_SIZE));
116     }
117
118     putchar('.');
119     fflush(stdout);
120 }
121
122 static void
123 test_big_vector(void)
124 {
125     enum { SIZE = 1000000 };
126     struct test_vector vec = {
127         NULL, SIZE,
128         { 0x34, 0xAA, 0x97, 0x3C, 0xD4, 0xC4, 0xDA, 0xA4, 0xF6, 0x1E,
129           0xEB, 0x2B, 0xDB, 0xAD, 0x27, 0x31, 0x65, 0x34, 0x01, 0x6F }
130     };
131     size_t i;
132
133     vec.data = xmalloc(SIZE);
134     for (i = 0; i < SIZE; i++) {
135         vec.data[i] = 'a';
136     }
137     test_one(&vec);
138     free(vec.data);
139 }
140
141 static void
142 test_shar1_main(int argc OVS_UNUSED, char *argv[] OVS_UNUSED)
143 {
144     int i;
145
146     for (i = 0; i < ARRAY_SIZE(vectors); i++) {
147         test_one(&vectors[i]);
148     }
149
150     test_big_vector();
151
152     putchar('\n');
153 }
154
155 OVSTEST_REGISTER("test-sha1", test_shar1_main);