File Coverage

_sha256.c
Criterion Covered Total %
statement 69 86 80.2
branch 9 20 45.0
condition n/a
subroutine n/a
pod n/a
total 78 106 73.5


line stmt bran cond sub pod time code
1             /* sha256.c - an implementation of SHA-256/224 hash functions
2             * based on FIPS 180-3 (Federal Information Processing Standart).
3             *
4             * Copyright: 2010-2012 Aleksey Kravchenko
5             *
6             * Permission is hereby granted, free of charge, to any person obtaining a
7             * copy of this software and associated documentation files (the "Software"),
8             * to deal in the Software without restriction, including without limitation
9             * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10             * and/or sell copies of the Software, and to permit persons to whom the
11             * Software is furnished to do so.
12             *
13             * This program is distributed in the hope that it will be useful, but
14             * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15             * or FITNESS FOR A PARTICULAR PURPOSE. Use this program at your own risk!
16             */
17              
18             #include
19             #include "byte_order.h"
20             #include "sha256.h"
21              
22             /* SHA-224 and SHA-256 constants for 64 rounds. These words represent
23             * the first 32 bits of the fractional parts of the cube
24             * roots of the first 64 prime numbers. */
25             static const unsigned rhash_k256[64] = {
26             0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5, 0x3956c25b, 0x59f111f1,
27             0x923f82a4, 0xab1c5ed5, 0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3,
28             0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174, 0xe49b69c1, 0xefbe4786,
29             0x0fc19dc6, 0x240ca1cc, 0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da,
30             0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7, 0xc6e00bf3, 0xd5a79147,
31             0x06ca6351, 0x14292967, 0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13,
32             0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85, 0xa2bfe8a1, 0xa81a664b,
33             0xc24b8b70, 0xc76c51a3, 0xd192e819, 0xd6990624, 0xf40e3585, 0x106aa070,
34             0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5, 0x391c0cb3, 0x4ed8aa4a,
35             0x5b9cca4f, 0x682e6ff3, 0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208,
36             0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2
37             };
38              
39             /* The SHA256/224 functions defined by FIPS 180-3, 4.1.2 */
40             /* Optimized version of Ch(x,y,z)=((x & y) | (~x & z)) */
41             #define Ch(x,y,z) ((z) ^ ((x) & ((y) ^ (z))))
42             /* Optimized version of Maj(x,y,z)=((x & y) ^ (x & z) ^ (y & z)) */
43             #define Maj(x,y,z) (((x) & (y)) ^ ((z) & ((x) ^ (y))))
44              
45             #define Sigma0(x) (ROTR32((x), 2) ^ ROTR32((x), 13) ^ ROTR32((x), 22))
46             #define Sigma1(x) (ROTR32((x), 6) ^ ROTR32((x), 11) ^ ROTR32((x), 25))
47             #define sigma0(x) (ROTR32((x), 7) ^ ROTR32((x), 18) ^ ((x) >> 3))
48             #define sigma1(x) (ROTR32((x),17) ^ ROTR32((x), 19) ^ ((x) >> 10))
49              
50             /* Recalculate element n-th of circular buffer W using formula
51             * W[n] = sigma1(W[n - 2]) + W[n - 7] + sigma0(W[n - 15]) + W[n - 16]; */
52             #define RECALCULATE_W(W,n) (W[n] += \
53             (sigma1(W[(n - 2) & 15]) + W[(n - 7) & 15] + sigma0(W[(n - 15) & 15])))
54              
55             #define ROUND(a,b,c,d,e,f,g,h,k,data) { \
56             unsigned T1 = h + Sigma1(e) + Ch(e,f,g) + k + (data); \
57             d += T1, h = T1 + Sigma0(a) + Maj(a,b,c); }
58             #define ROUND_1_16(a,b,c,d,e,f,g,h,n) \
59             ROUND(a,b,c,d,e,f,g,h, rhash_k256[n], W[n] = be2me_32(block[n]))
60             #define ROUND_17_64(a,b,c,d,e,f,g,h,n) \
61             ROUND(a,b,c,d,e,f,g,h, k[n], RECALCULATE_W(W, n))
62              
63             /**
64             * Initialize context before calculaing hash.
65             *
66             * @param ctx context to initialize
67             */
68 2           void rhash_sha256_init(sha256_ctx *ctx)
69             {
70             /* Initial values. These words were obtained by taking the first 32
71             * bits of the fractional parts of the square roots of the first
72             * eight prime numbers. */
73             static const unsigned SHA256_H0[8] = {
74             0x6a09e667, 0xbb67ae85, 0x3c6ef372, 0xa54ff53a,
75             0x510e527f, 0x9b05688c, 0x1f83d9ab, 0x5be0cd19
76             };
77              
78 2           ctx->length = 0;
79 2           ctx->digest_length = sha256_hash_size;
80              
81             /* initialize algorithm state */
82 2           memcpy(ctx->hash, SHA256_H0, sizeof(ctx->hash));
83 2           }
84              
85             /**
86             * Initialize context before calculaing hash.
87             *
88             * @param ctx context to initialize
89             */
90 2           void rhash_sha224_init(struct sha256_ctx *ctx)
91             {
92             /* Initial values from FIPS 180-3. These words were obtained by taking
93             * bits from 33th to 64th of the fractional parts of the square
94             * roots of ninth through sixteenth prime numbers. */
95             static const unsigned SHA224_H0[8] = {
96             0xc1059ed8, 0x367cd507, 0x3070dd17, 0xf70e5939,
97             0xffc00b31, 0x68581511, 0x64f98fa7, 0xbefa4fa4
98             };
99              
100 2           ctx->length = 0;
101 2           ctx->digest_length = sha224_hash_size;
102              
103 2           memcpy(ctx->hash, SHA224_H0, sizeof(ctx->hash));
104 2           }
105              
106             /**
107             * The core transformation. Process a 512-bit block.
108             *
109             * @param hash algorithm state
110             * @param block the message block to process
111             */
112 4           static void rhash_sha256_process_block(unsigned hash[8], unsigned block[16])
113             {
114             unsigned A, B, C, D, E, F, G, H;
115             unsigned W[16];
116             const unsigned *k;
117             int i;
118              
119 4           A = hash[0], B = hash[1], C = hash[2], D = hash[3];
120 4           E = hash[4], F = hash[5], G = hash[6], H = hash[7];
121              
122             /* Compute SHA using alternate Method: FIPS 180-3 6.1.3 */
123 4           ROUND_1_16(A, B, C, D, E, F, G, H, 0);
124 4           ROUND_1_16(H, A, B, C, D, E, F, G, 1);
125 4           ROUND_1_16(G, H, A, B, C, D, E, F, 2);
126 4           ROUND_1_16(F, G, H, A, B, C, D, E, 3);
127 4           ROUND_1_16(E, F, G, H, A, B, C, D, 4);
128 4           ROUND_1_16(D, E, F, G, H, A, B, C, 5);
129 4           ROUND_1_16(C, D, E, F, G, H, A, B, 6);
130 4           ROUND_1_16(B, C, D, E, F, G, H, A, 7);
131 4           ROUND_1_16(A, B, C, D, E, F, G, H, 8);
132 4           ROUND_1_16(H, A, B, C, D, E, F, G, 9);
133 4           ROUND_1_16(G, H, A, B, C, D, E, F, 10);
134 4           ROUND_1_16(F, G, H, A, B, C, D, E, 11);
135 4           ROUND_1_16(E, F, G, H, A, B, C, D, 12);
136 4           ROUND_1_16(D, E, F, G, H, A, B, C, 13);
137 4           ROUND_1_16(C, D, E, F, G, H, A, B, 14);
138 4           ROUND_1_16(B, C, D, E, F, G, H, A, 15);
139              
140 16 100         for (i = 16, k = &rhash_k256[16]; i < 64; i += 16, k += 16) {
141 12           ROUND_17_64(A, B, C, D, E, F, G, H, 0);
142 12           ROUND_17_64(H, A, B, C, D, E, F, G, 1);
143 12           ROUND_17_64(G, H, A, B, C, D, E, F, 2);
144 12           ROUND_17_64(F, G, H, A, B, C, D, E, 3);
145 12           ROUND_17_64(E, F, G, H, A, B, C, D, 4);
146 12           ROUND_17_64(D, E, F, G, H, A, B, C, 5);
147 12           ROUND_17_64(C, D, E, F, G, H, A, B, 6);
148 12           ROUND_17_64(B, C, D, E, F, G, H, A, 7);
149 12           ROUND_17_64(A, B, C, D, E, F, G, H, 8);
150 12           ROUND_17_64(H, A, B, C, D, E, F, G, 9);
151 12           ROUND_17_64(G, H, A, B, C, D, E, F, 10);
152 12           ROUND_17_64(F, G, H, A, B, C, D, E, 11);
153 12           ROUND_17_64(E, F, G, H, A, B, C, D, 12);
154 12           ROUND_17_64(D, E, F, G, H, A, B, C, 13);
155 12           ROUND_17_64(C, D, E, F, G, H, A, B, 14);
156 12           ROUND_17_64(B, C, D, E, F, G, H, A, 15);
157             }
158              
159 4           hash[0] += A, hash[1] += B, hash[2] += C, hash[3] += D;
160 4           hash[4] += E, hash[5] += F, hash[6] += G, hash[7] += H;
161 4           }
162              
163             /**
164             * Calculate message hash.
165             * Can be called repeatedly with chunks of the message to be hashed.
166             *
167             * @param ctx the algorithm context containing current hashing state
168             * @param msg message chunk
169             * @param size length of the message chunk
170             */
171 4           void rhash_sha256_update(sha256_ctx *ctx, const unsigned char *msg, size_t size)
172             {
173 4           size_t index = (size_t)ctx->length & 63;
174 4           ctx->length += size;
175              
176             /* fill partial block */
177 4 50         if (index) {
178 0           size_t left = sha256_block_size - index;
179 0           memcpy((char*)ctx->message + index, msg, (size < left ? size : left));
180 0 0         if (size < left) return;
181              
182             /* process partial block */
183 0           rhash_sha256_process_block(ctx->hash, (unsigned*)ctx->message);
184 0           msg += left;
185 0           size -= left;
186             }
187 4 50         while (size >= sha256_block_size) {
188             unsigned* aligned_message_block;
189 0 0         if (IS_ALIGNED_32(msg)) {
190             /* the most common case is processing of an already aligned message
191             without copying it */
192 0           aligned_message_block = (unsigned*)msg;
193             } else {
194 0           memcpy(ctx->message, msg, sha256_block_size);
195 0           aligned_message_block = (unsigned*)ctx->message;
196             }
197              
198 0           rhash_sha256_process_block(ctx->hash, aligned_message_block);
199 0           msg += sha256_block_size;
200 0           size -= sha256_block_size;
201             }
202 4 50         if (size) {
203 4           memcpy(ctx->message, msg, size); /* save leftovers */
204             }
205             }
206              
207             /**
208             * Store calculated hash into the given array.
209             *
210             * @param ctx the algorithm context containing current hashing state
211             * @param result calculated hash in binary form
212             */
213 4           void rhash_sha256_final(sha256_ctx *ctx, unsigned char* result)
214             {
215 4           size_t index = ((unsigned)ctx->length & 63) >> 2;
216 4           unsigned shift = ((unsigned)ctx->length & 3) * 8;
217              
218             /* pad message and run for last block */
219              
220             /* append the byte 0x80 to the message */
221 4           ctx->message[index] &= le2me_32(~(0xFFFFFFFFu << shift));
222 4           ctx->message[index++] ^= le2me_32(0x80u << shift);
223              
224             /* if no room left in the message to store 64-bit message length */
225 4 50         if (index > 14) {
226             /* then fill the rest with zeros and process it */
227 0 0         while (index < 16) {
228 0           ctx->message[index++] = 0;
229             }
230 0           rhash_sha256_process_block(ctx->hash, ctx->message);
231 0           index = 0;
232             }
233 56 100         while (index < 14) {
234 52           ctx->message[index++] = 0;
235             }
236 4           ctx->message[14] = be2me_32( (unsigned)(ctx->length >> 29) );
237 4           ctx->message[15] = be2me_32( (unsigned)(ctx->length << 3) );
238 4           rhash_sha256_process_block(ctx->hash, ctx->message);
239              
240 4 50         if (result) be32_copy(result, 0, ctx->hash, ctx->digest_length);
241 4           }