Blame view

RIOT/tests/unittests/tests-hashes/tests-hashes-sha256.c 9.24 KB
a752c7ab   elopes   add first test an...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
  /*
   * Copyright (C) 2013 Christian Mehlis <mehlis@inf.fu-berlin.de>
   * Copyright (C) 2014 Philipp Rosenkranz <philipp.rosenkranz@fu-berlin.de>
   * Copyright (C) 2016 Martin Landsmann <martin.landsmann@haw-hamburg.de>
   *
   * This file is subject to the terms and conditions of the GNU Lesser
   * General Public License v2.1. See the file LICENSE in the top level
   * directory for more details.
   */
  
   /**
   * @ingroup     unittests
   * @{
   *
   * @file
   * @brief       testcases for the sha256 implementation
   *
   * @author      Christian Mehlis <mehlis@inf.fu-berlin.de>
   * @author      Philipp Rosenkranz <philipp.rosenkranz@fu-berlin.de>
   * @author      Martin Landsmann <martin.landsmann@haw-hamburg.de>
   *
   * @}
   */
  
  #include <limits.h>
  #include <string.h>
  #include <stdio.h>
  #include <stdlib.h>
  
  #include "embUnit/embUnit.h"
  
  #include "hashes/sha256.h"
  
  #include "tests-hashes.h"
  
  /**
   * @brief expected hash for test 01
   * i.e. 3eda9ffe5537a588f54d0b2a453e5fa932986d0bc0f9556924f5c2379b2c91b0
   *
   * converted using:
   * s=$(echo '<hash string>' | sed -e 's/../0x&, /g' | sed 's/, $//'); echo {$s}\;
   *
   * where <hash string> is the above sequence of characters 3e...b0
   */
  static const unsigned char h01[] = {0x3e, 0xda, 0x9f, 0xfe, 0x55, 0x37, 0xa5, 0x88,
                                      0xf5, 0x4d, 0x0b, 0x2a, 0x45, 0x3e, 0x5f, 0xa9,
                                      0x32, 0x98, 0x6d, 0x0b, 0xc0, 0xf9, 0x55, 0x69,
                                      0x24, 0xf5, 0xc2, 0x37, 0x9b, 0x2c, 0x91, 0xb0};
  
  /**
   * @brief expected hash for test 02
   * i.e. a144d0b4d285260ebbbab6840baceaa09eab3e157443c9458de764b7262c8ace
   */
  static const unsigned char h02[] = {0xa1, 0x44, 0xd0, 0xb4, 0xd2, 0x85, 0x26, 0x0e,
                                      0xbb, 0xba, 0xb6, 0x84, 0x0b, 0xac, 0xea, 0xa0,
                                      0x9e, 0xab, 0x3e, 0x15, 0x74, 0x43, 0xc9, 0x45,
                                      0x8d, 0xe7, 0x64, 0xb7, 0x26, 0x2c, 0x8a, 0xce};
  
  /**
   * @brief expected hash for test 03
   * i.e. 9f839169d293276d1b799707d2171ac1fd5b78d0f3bc7693dbed831524dd2d77
   */
  static const unsigned char h03[] = {0x9f, 0x83, 0x91, 0x69, 0xd2, 0x93, 0x27, 0x6d,
                                      0x1b, 0x79, 0x97, 0x07, 0xd2, 0x17, 0x1a, 0xc1,
                                      0xfd, 0x5b, 0x78, 0xd0, 0xf3, 0xbc, 0x76, 0x93,
                                      0xdb, 0xed, 0x83, 0x15, 0x24, 0xdd, 0x2d, 0x77};
  
  /**
   * @brief expected hash for test 04
   * i.e. 6c5fe2a8e3de58a5e5ac061031a8e802ae1fb9e7197862ec1aedf236f0e23475
   */
  static const unsigned char h04[] = {0x6c, 0x5f, 0xe2, 0xa8, 0xe3, 0xde, 0x58, 0xa5,
                                      0xe5, 0xac, 0x06, 0x10, 0x31, 0xa8, 0xe8, 0x02,
                                      0xae, 0x1f, 0xb9, 0xe7, 0x19, 0x78, 0x62, 0xec,
                                      0x1a, 0xed, 0xf2, 0x36, 0xf0, 0xe2, 0x34, 0x75};
  
  /**
   * @brief expected hash for test digits_letters
   * i.e. 945ab9d52b069923680c2c067fa6092cbbd9234cf7a38628f3033b2d54d3d3bf
   */
  static const unsigned char hdigits_letters[] =
                                     {0x94, 0x5a, 0xb9, 0xd5, 0x2b, 0x06, 0x99, 0x23,
                                      0x68, 0x0c, 0x2c, 0x06, 0x7f, 0xa6, 0x09, 0x2c,
                                      0xbb, 0xd9, 0x23, 0x4c, 0xf7, 0xa3, 0x86, 0x28,
                                      0xf3, 0x03, 0x3b, 0x2d, 0x54, 0xd3, 0xd3, 0xbf};
  
  /**
   * @brief expected hash for test pangramm
   * i.e. d32b568cd1b96d459e7291ebf4b25d007f275c9f13149beeb782fac0716613f8
   */
  static const unsigned char hpangramm[] =
                                     {0xd3, 0x2b, 0x56, 0x8c, 0xd1, 0xb9, 0x6d, 0x45,
                                      0x9e, 0x72, 0x91, 0xeb, 0xf4, 0xb2, 0x5d, 0x00,
                                      0x7f, 0x27, 0x5c, 0x9f, 0x13, 0x14, 0x9b, 0xee,
                                      0xb7, 0x82, 0xfa, 0xc0, 0x71, 0x66, 0x13, 0xf8};
  
  /**
   * @brief expected hash for test pangramm_no_more
   * i.e. 78206a866dbb2bf017d8e34274aed01a8ce405b69d45db30bafa00f5eeed7d5e
   */
  static const unsigned char hpangramm_no_more[] =
                                     {0x78, 0x20, 0x6a, 0x86, 0x6d, 0xbb, 0x2b, 0xf0,
                                      0x17, 0xd8, 0xe3, 0x42, 0x74, 0xae, 0xd0, 0x1a,
                                      0x8c, 0xe4, 0x05, 0xb6, 0x9d, 0x45, 0xdb, 0x30,
                                      0xba, 0xfa, 0x00, 0xf5, 0xee, 0xed, 0x7d, 0x5e};
  
  /**
   * @brief expected hash for test empty
   * i.e. e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
   */
  static const unsigned char hempty[] =
                                     {0xe3, 0xb0, 0xc4, 0x42, 0x98, 0xfc, 0x1c, 0x14,
                                      0x9a, 0xfb, 0xf4, 0xc8, 0x99, 0x6f, 0xb9, 0x24,
                                      0x27, 0xae, 0x41, 0xe4, 0x64, 0x9b, 0x93, 0x4c,
                                      0xa4, 0x95, 0x99, 0x1b, 0x78, 0x52, 0xb8, 0x55};
  
  /**
   * @brief expected hash for test failing_compare
   * i.e. c19d3bf8588897076873f1a0a106ba840ca46bd1179d592953acecc4df59593c
   */
  static const unsigned char hfailing_compare[] =
                                     {0xc1, 0x9d, 0x3b, 0xf8, 0x58, 0x88, 0x97, 0x07,
                                      0x68, 0x73, 0xf1, 0xa0, 0xa1, 0x06, 0xba, 0x84,
                                      0x0c, 0xa4, 0x6b, 0xd1, 0x17, 0x9d, 0x59, 0x29,
                                      0x53, 0xac, 0xec, 0xc4, 0xdf, 0x59, 0x59, 0x3c};
  
  /**
   * @brief expected hash for test long_sequence
   * i.e. 06c84971e2831c48b8293144c762e3236a78217354896185b14a3a84f7cd8066
   */
  static const unsigned char hlong_sequence[] =
                                     {0x06, 0xc8, 0x49, 0x71, 0xe2, 0x83, 0x1c, 0x48,
                                      0xb8, 0x29, 0x31, 0x44, 0xc7, 0x62, 0xe3, 0x23,
                                      0x6a, 0x78, 0x21, 0x73, 0x54, 0x89, 0x61, 0x85,
                                      0xb1, 0x4a, 0x3a, 0x84, 0xf7, 0xcd, 0x80, 0x66};
  
  static int calc_and_compare_hash(const char *str, const unsigned char *expected)
  {
      static unsigned char hash[SHA256_DIGEST_LENGTH];
      sha256_context_t sha256;
  
      sha256_init(&sha256);
      sha256_update(&sha256, (uint8_t*)str, strlen(str));
      sha256_final(&sha256, hash);
  
      return (memcmp(expected, hash, SHA256_DIGEST_LENGTH) == 0);
  }
  
  static void test_hashes_sha256_hash_sequence_01(void)
  {
      TEST_ASSERT(calc_and_compare_hash("1234567890_1", h01));
  }
  
  static void test_hashes_sha256_hash_sequence_02(void)
  {
      TEST_ASSERT(calc_and_compare_hash("1234567890_2", h02));
  }
  
  static void test_hashes_sha256_hash_sequence_03(void)
  {
      TEST_ASSERT(calc_and_compare_hash("1234567890_3", h03));
  }
  
  static void test_hashes_sha256_hash_sequence_04(void)
  {
      TEST_ASSERT(calc_and_compare_hash("1234567890_4", h04));
  }
  
  static void test_hashes_sha256_hash_sequence_digits_letters(void)
  {
      TEST_ASSERT(calc_and_compare_hash(
                      "0123456789abcde-0123456789abcde-0123456789abcde-0123456789abcde-",
                      hdigits_letters));
  }
  
  static void test_hashes_sha256_hash_sequence_pangramm(void)
  {
      TEST_ASSERT(calc_and_compare_hash(
                      "Franz jagt im komplett verwahrlosten Taxi quer durch Bayern",
                      hpangramm));
  }
  
  static void test_hashes_sha256_hash_sequence_pangramm_no_more(void)
  {
      /* exchanged `z` with `k` of the first word `Fran[z|k]` */
      TEST_ASSERT(calc_and_compare_hash(
                      "Frank jagt im komplett verwahrlosten Taxi quer durch Bayern",
                      hpangramm_no_more));
  }
  
  static void test_hashes_sha256_hash_sequence_empty(void)
  {
      TEST_ASSERT(calc_and_compare_hash("", hempty));
  }
  
  static void test_hashes_sha256_hash_sequence_failing_compare(void)
  {
      /* failing compare (sha256 switched last byte of expected hash from `3b` to `3c`) */
      TEST_ASSERT(!calc_and_compare_hash("This test fails!",
                      hfailing_compare));
  }
  
  static void test_hashes_sha256_hash_long_sequence(void)
  {
      TEST_ASSERT(calc_and_compare_hash(
                      "RIOT is an open-source microkernel-based operating system, designed"
                      " to match the requirements of Internet of Things (IoT) devices and"
                      " other embedded devices. These requirements include a very low memory"
                      " footprint (on the order of a few kilobytes), high energy efficiency"
                      ", real-time capabilities, communication stacks for both wireless and"
                      " wired networks, and support for a wide range of low-power hardware.",
                      hlong_sequence));
  }
  
  Test *tests_hashes_sha256_tests(void)
  {
      EMB_UNIT_TESTFIXTURES(fixtures) {
          new_TestFixture(test_hashes_sha256_hash_sequence_01),
          new_TestFixture(test_hashes_sha256_hash_sequence_02),
          new_TestFixture(test_hashes_sha256_hash_sequence_03),
          new_TestFixture(test_hashes_sha256_hash_sequence_04),
  
          new_TestFixture(test_hashes_sha256_hash_sequence_digits_letters),
          new_TestFixture(test_hashes_sha256_hash_sequence_pangramm),
          new_TestFixture(test_hashes_sha256_hash_sequence_pangramm_no_more),
          new_TestFixture(test_hashes_sha256_hash_sequence_empty),
          new_TestFixture(test_hashes_sha256_hash_sequence_failing_compare),
  
          new_TestFixture(test_hashes_sha256_hash_long_sequence),
      };
  
      EMB_UNIT_TESTCALLER(hashes_sha256_tests, NULL, NULL,
                          fixtures);
  
      return (Test *)&hashes_sha256_tests;
  }