Blame view

lib/crypto/sha256.c 10.4 KB
2874c5fd2   Thomas Gleixner   treewide: Replace...
1
  // SPDX-License-Identifier: GPL-2.0-or-later
daeba0641   Vivek Goyal   purgatory/sha256:...
2
3
4
5
6
7
8
9
10
11
  /*
   * SHA-256, as specified in
   * http://csrc.nist.gov/groups/STM/cavp/documents/shs/sha256-384-512.pdf
   *
   * SHA-256 code by Jean-Luc Cooke <jlcooke@certainkey.com>.
   *
   * Copyright (c) Jean-Luc Cooke <jlcooke@certainkey.com>
   * Copyright (c) Andrew McDonald <andrew@mcdonald.org.uk>
   * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
   * Copyright (c) 2014 Red Hat Inc.
daeba0641   Vivek Goyal   purgatory/sha256:...
12
13
14
   */
  
  #include <linux/bitops.h>
01d3aee86   Hans de Goede   crypto: sha256 - ...
15
  #include <linux/export.h>
9ecf5ad52   Hans de Goede   crypto: sha256 - ...
16
  #include <linux/module.h>
df6f2801f   Philipp Rudo   kernel/kexec_file...
17
  #include <linux/string.h>
34d6245fb   Hans de Goede   crypto: sha256 - ...
18
  #include <crypto/sha.h>
906a4bb97   Hans de Goede   crypto: sha256 - ...
19
  #include <asm/unaligned.h>
daeba0641   Vivek Goyal   purgatory/sha256:...
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
  
  static inline u32 Ch(u32 x, u32 y, u32 z)
  {
  	return z ^ (x & (y ^ z));
  }
  
  static inline u32 Maj(u32 x, u32 y, u32 z)
  {
  	return (x & y) | (z & (x | y));
  }
  
  #define e0(x)       (ror32(x, 2) ^ ror32(x, 13) ^ ror32(x, 22))
  #define e1(x)       (ror32(x, 6) ^ ror32(x, 11) ^ ror32(x, 25))
  #define s0(x)       (ror32(x, 7) ^ ror32(x, 18) ^ (x >> 3))
  #define s1(x)       (ror32(x, 17) ^ ror32(x, 19) ^ (x >> 10))
  
  static inline void LOAD_OP(int I, u32 *W, const u8 *input)
  {
906a4bb97   Hans de Goede   crypto: sha256 - ...
38
  	W[I] = get_unaligned_be32((__u32 *)input + I);
daeba0641   Vivek Goyal   purgatory/sha256:...
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
  }
  
  static inline void BLEND_OP(int I, u32 *W)
  {
  	W[I] = s1(W[I-2]) + W[I-7] + s0(W[I-15]) + W[I-16];
  }
  
  static void sha256_transform(u32 *state, const u8 *input)
  {
  	u32 a, b, c, d, e, f, g, h, t1, t2;
  	u32 W[64];
  	int i;
  
  	/* load the input */
  	for (i = 0; i < 16; i++)
  		LOAD_OP(i, W, input);
  
  	/* now blend */
  	for (i = 16; i < 64; i++)
  		BLEND_OP(i, W);
  
  	/* load the state into our registers */
  	a = state[0];  b = state[1];  c = state[2];  d = state[3];
  	e = state[4];  f = state[5];  g = state[6];  h = state[7];
  
  	/* now iterate */
  	t1 = h + e1(e) + Ch(e, f, g) + 0x428a2f98 + W[0];
  	t2 = e0(a) + Maj(a, b, c);    d += t1;    h = t1 + t2;
  	t1 = g + e1(d) + Ch(d, e, f) + 0x71374491 + W[1];
  	t2 = e0(h) + Maj(h, a, b);    c += t1;    g = t1 + t2;
  	t1 = f + e1(c) + Ch(c, d, e) + 0xb5c0fbcf + W[2];
  	t2 = e0(g) + Maj(g, h, a);    b += t1;    f = t1 + t2;
  	t1 = e + e1(b) + Ch(b, c, d) + 0xe9b5dba5 + W[3];
  	t2 = e0(f) + Maj(f, g, h);    a += t1;    e = t1 + t2;
  	t1 = d + e1(a) + Ch(a, b, c) + 0x3956c25b + W[4];
  	t2 = e0(e) + Maj(e, f, g);    h += t1;    d = t1 + t2;
  	t1 = c + e1(h) + Ch(h, a, b) + 0x59f111f1 + W[5];
  	t2 = e0(d) + Maj(d, e, f);    g += t1;    c = t1 + t2;
  	t1 = b + e1(g) + Ch(g, h, a) + 0x923f82a4 + W[6];
  	t2 = e0(c) + Maj(c, d, e);    f += t1;    b = t1 + t2;
  	t1 = a + e1(f) + Ch(f, g, h) + 0xab1c5ed5 + W[7];
  	t2 = e0(b) + Maj(b, c, d);    e += t1;    a = t1 + t2;
  
  	t1 = h + e1(e) + Ch(e, f, g) + 0xd807aa98 + W[8];
  	t2 = e0(a) + Maj(a, b, c);    d += t1;    h = t1 + t2;
  	t1 = g + e1(d) + Ch(d, e, f) + 0x12835b01 + W[9];
  	t2 = e0(h) + Maj(h, a, b);    c += t1;    g = t1 + t2;
  	t1 = f + e1(c) + Ch(c, d, e) + 0x243185be + W[10];
  	t2 = e0(g) + Maj(g, h, a);    b += t1;    f = t1 + t2;
  	t1 = e + e1(b) + Ch(b, c, d) + 0x550c7dc3 + W[11];
  	t2 = e0(f) + Maj(f, g, h);    a += t1;    e = t1 + t2;
  	t1 = d + e1(a) + Ch(a, b, c) + 0x72be5d74 + W[12];
  	t2 = e0(e) + Maj(e, f, g);    h += t1;    d = t1 + t2;
  	t1 = c + e1(h) + Ch(h, a, b) + 0x80deb1fe + W[13];
  	t2 = e0(d) + Maj(d, e, f);    g += t1;    c = t1 + t2;
  	t1 = b + e1(g) + Ch(g, h, a) + 0x9bdc06a7 + W[14];
  	t2 = e0(c) + Maj(c, d, e);    f += t1;    b = t1 + t2;
  	t1 = a + e1(f) + Ch(f, g, h) + 0xc19bf174 + W[15];
aca111196   Hans de Goede   crypto: sha256 - ...
97
  	t2 = e0(b) + Maj(b, c, d);    e += t1;    a = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
98
99
  
  	t1 = h + e1(e) + Ch(e, f, g) + 0xe49b69c1 + W[16];
aca111196   Hans de Goede   crypto: sha256 - ...
100
  	t2 = e0(a) + Maj(a, b, c);    d += t1;    h = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
101
  	t1 = g + e1(d) + Ch(d, e, f) + 0xefbe4786 + W[17];
aca111196   Hans de Goede   crypto: sha256 - ...
102
  	t2 = e0(h) + Maj(h, a, b);    c += t1;    g = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
103
  	t1 = f + e1(c) + Ch(c, d, e) + 0x0fc19dc6 + W[18];
aca111196   Hans de Goede   crypto: sha256 - ...
104
  	t2 = e0(g) + Maj(g, h, a);    b += t1;    f = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
105
  	t1 = e + e1(b) + Ch(b, c, d) + 0x240ca1cc + W[19];
aca111196   Hans de Goede   crypto: sha256 - ...
106
  	t2 = e0(f) + Maj(f, g, h);    a += t1;    e = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
107
  	t1 = d + e1(a) + Ch(a, b, c) + 0x2de92c6f + W[20];
aca111196   Hans de Goede   crypto: sha256 - ...
108
  	t2 = e0(e) + Maj(e, f, g);    h += t1;    d = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
109
  	t1 = c + e1(h) + Ch(h, a, b) + 0x4a7484aa + W[21];
aca111196   Hans de Goede   crypto: sha256 - ...
110
  	t2 = e0(d) + Maj(d, e, f);    g += t1;    c = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
111
  	t1 = b + e1(g) + Ch(g, h, a) + 0x5cb0a9dc + W[22];
aca111196   Hans de Goede   crypto: sha256 - ...
112
  	t2 = e0(c) + Maj(c, d, e);    f += t1;    b = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
113
  	t1 = a + e1(f) + Ch(f, g, h) + 0x76f988da + W[23];
aca111196   Hans de Goede   crypto: sha256 - ...
114
  	t2 = e0(b) + Maj(b, c, d);    e += t1;    a = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
115
116
  
  	t1 = h + e1(e) + Ch(e, f, g) + 0x983e5152 + W[24];
aca111196   Hans de Goede   crypto: sha256 - ...
117
  	t2 = e0(a) + Maj(a, b, c);    d += t1;    h = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
118
  	t1 = g + e1(d) + Ch(d, e, f) + 0xa831c66d + W[25];
aca111196   Hans de Goede   crypto: sha256 - ...
119
  	t2 = e0(h) + Maj(h, a, b);    c += t1;    g = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
120
  	t1 = f + e1(c) + Ch(c, d, e) + 0xb00327c8 + W[26];
aca111196   Hans de Goede   crypto: sha256 - ...
121
  	t2 = e0(g) + Maj(g, h, a);    b += t1;    f = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
122
  	t1 = e + e1(b) + Ch(b, c, d) + 0xbf597fc7 + W[27];
aca111196   Hans de Goede   crypto: sha256 - ...
123
  	t2 = e0(f) + Maj(f, g, h);    a += t1;    e = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
124
  	t1 = d + e1(a) + Ch(a, b, c) + 0xc6e00bf3 + W[28];
aca111196   Hans de Goede   crypto: sha256 - ...
125
  	t2 = e0(e) + Maj(e, f, g);    h += t1;    d = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
126
  	t1 = c + e1(h) + Ch(h, a, b) + 0xd5a79147 + W[29];
aca111196   Hans de Goede   crypto: sha256 - ...
127
  	t2 = e0(d) + Maj(d, e, f);    g += t1;    c = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
128
  	t1 = b + e1(g) + Ch(g, h, a) + 0x06ca6351 + W[30];
aca111196   Hans de Goede   crypto: sha256 - ...
129
  	t2 = e0(c) + Maj(c, d, e);    f += t1;    b = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
130
  	t1 = a + e1(f) + Ch(f, g, h) + 0x14292967 + W[31];
aca111196   Hans de Goede   crypto: sha256 - ...
131
  	t2 = e0(b) + Maj(b, c, d);    e += t1;    a = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
132
133
  
  	t1 = h + e1(e) + Ch(e, f, g) + 0x27b70a85 + W[32];
aca111196   Hans de Goede   crypto: sha256 - ...
134
  	t2 = e0(a) + Maj(a, b, c);    d += t1;    h = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
135
  	t1 = g + e1(d) + Ch(d, e, f) + 0x2e1b2138 + W[33];
aca111196   Hans de Goede   crypto: sha256 - ...
136
  	t2 = e0(h) + Maj(h, a, b);    c += t1;    g = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
137
  	t1 = f + e1(c) + Ch(c, d, e) + 0x4d2c6dfc + W[34];
aca111196   Hans de Goede   crypto: sha256 - ...
138
  	t2 = e0(g) + Maj(g, h, a);    b += t1;    f = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
139
  	t1 = e + e1(b) + Ch(b, c, d) + 0x53380d13 + W[35];
aca111196   Hans de Goede   crypto: sha256 - ...
140
  	t2 = e0(f) + Maj(f, g, h);    a += t1;    e = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
141
  	t1 = d + e1(a) + Ch(a, b, c) + 0x650a7354 + W[36];
aca111196   Hans de Goede   crypto: sha256 - ...
142
  	t2 = e0(e) + Maj(e, f, g);    h += t1;    d = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
143
  	t1 = c + e1(h) + Ch(h, a, b) + 0x766a0abb + W[37];
aca111196   Hans de Goede   crypto: sha256 - ...
144
  	t2 = e0(d) + Maj(d, e, f);    g += t1;    c = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
145
  	t1 = b + e1(g) + Ch(g, h, a) + 0x81c2c92e + W[38];
aca111196   Hans de Goede   crypto: sha256 - ...
146
  	t2 = e0(c) + Maj(c, d, e);    f += t1;    b = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
147
  	t1 = a + e1(f) + Ch(f, g, h) + 0x92722c85 + W[39];
aca111196   Hans de Goede   crypto: sha256 - ...
148
  	t2 = e0(b) + Maj(b, c, d);    e += t1;    a = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
149
150
  
  	t1 = h + e1(e) + Ch(e, f, g) + 0xa2bfe8a1 + W[40];
aca111196   Hans de Goede   crypto: sha256 - ...
151
  	t2 = e0(a) + Maj(a, b, c);    d += t1;    h = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
152
  	t1 = g + e1(d) + Ch(d, e, f) + 0xa81a664b + W[41];
aca111196   Hans de Goede   crypto: sha256 - ...
153
  	t2 = e0(h) + Maj(h, a, b);    c += t1;    g = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
154
  	t1 = f + e1(c) + Ch(c, d, e) + 0xc24b8b70 + W[42];
aca111196   Hans de Goede   crypto: sha256 - ...
155
  	t2 = e0(g) + Maj(g, h, a);    b += t1;    f = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
156
  	t1 = e + e1(b) + Ch(b, c, d) + 0xc76c51a3 + W[43];
aca111196   Hans de Goede   crypto: sha256 - ...
157
  	t2 = e0(f) + Maj(f, g, h);    a += t1;    e = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
158
  	t1 = d + e1(a) + Ch(a, b, c) + 0xd192e819 + W[44];
aca111196   Hans de Goede   crypto: sha256 - ...
159
  	t2 = e0(e) + Maj(e, f, g);    h += t1;    d = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
160
  	t1 = c + e1(h) + Ch(h, a, b) + 0xd6990624 + W[45];
aca111196   Hans de Goede   crypto: sha256 - ...
161
  	t2 = e0(d) + Maj(d, e, f);    g += t1;    c = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
162
  	t1 = b + e1(g) + Ch(g, h, a) + 0xf40e3585 + W[46];
aca111196   Hans de Goede   crypto: sha256 - ...
163
  	t2 = e0(c) + Maj(c, d, e);    f += t1;    b = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
164
  	t1 = a + e1(f) + Ch(f, g, h) + 0x106aa070 + W[47];
aca111196   Hans de Goede   crypto: sha256 - ...
165
  	t2 = e0(b) + Maj(b, c, d);    e += t1;    a = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
166
167
  
  	t1 = h + e1(e) + Ch(e, f, g) + 0x19a4c116 + W[48];
aca111196   Hans de Goede   crypto: sha256 - ...
168
  	t2 = e0(a) + Maj(a, b, c);    d += t1;    h = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
169
  	t1 = g + e1(d) + Ch(d, e, f) + 0x1e376c08 + W[49];
aca111196   Hans de Goede   crypto: sha256 - ...
170
  	t2 = e0(h) + Maj(h, a, b);    c += t1;    g = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
171
  	t1 = f + e1(c) + Ch(c, d, e) + 0x2748774c + W[50];
aca111196   Hans de Goede   crypto: sha256 - ...
172
  	t2 = e0(g) + Maj(g, h, a);    b += t1;    f = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
173
  	t1 = e + e1(b) + Ch(b, c, d) + 0x34b0bcb5 + W[51];
aca111196   Hans de Goede   crypto: sha256 - ...
174
  	t2 = e0(f) + Maj(f, g, h);    a += t1;    e = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
175
  	t1 = d + e1(a) + Ch(a, b, c) + 0x391c0cb3 + W[52];
aca111196   Hans de Goede   crypto: sha256 - ...
176
  	t2 = e0(e) + Maj(e, f, g);    h += t1;    d = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
177
  	t1 = c + e1(h) + Ch(h, a, b) + 0x4ed8aa4a + W[53];
aca111196   Hans de Goede   crypto: sha256 - ...
178
  	t2 = e0(d) + Maj(d, e, f);    g += t1;    c = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
179
  	t1 = b + e1(g) + Ch(g, h, a) + 0x5b9cca4f + W[54];
aca111196   Hans de Goede   crypto: sha256 - ...
180
  	t2 = e0(c) + Maj(c, d, e);    f += t1;    b = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
181
  	t1 = a + e1(f) + Ch(f, g, h) + 0x682e6ff3 + W[55];
aca111196   Hans de Goede   crypto: sha256 - ...
182
  	t2 = e0(b) + Maj(b, c, d);    e += t1;    a = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
183
184
  
  	t1 = h + e1(e) + Ch(e, f, g) + 0x748f82ee + W[56];
aca111196   Hans de Goede   crypto: sha256 - ...
185
  	t2 = e0(a) + Maj(a, b, c);    d += t1;    h = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
186
  	t1 = g + e1(d) + Ch(d, e, f) + 0x78a5636f + W[57];
aca111196   Hans de Goede   crypto: sha256 - ...
187
  	t2 = e0(h) + Maj(h, a, b);    c += t1;    g = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
188
  	t1 = f + e1(c) + Ch(c, d, e) + 0x84c87814 + W[58];
aca111196   Hans de Goede   crypto: sha256 - ...
189
  	t2 = e0(g) + Maj(g, h, a);    b += t1;    f = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
190
  	t1 = e + e1(b) + Ch(b, c, d) + 0x8cc70208 + W[59];
aca111196   Hans de Goede   crypto: sha256 - ...
191
  	t2 = e0(f) + Maj(f, g, h);    a += t1;    e = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
192
  	t1 = d + e1(a) + Ch(a, b, c) + 0x90befffa + W[60];
aca111196   Hans de Goede   crypto: sha256 - ...
193
  	t2 = e0(e) + Maj(e, f, g);    h += t1;    d = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
194
  	t1 = c + e1(h) + Ch(h, a, b) + 0xa4506ceb + W[61];
aca111196   Hans de Goede   crypto: sha256 - ...
195
  	t2 = e0(d) + Maj(d, e, f);    g += t1;    c = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
196
  	t1 = b + e1(g) + Ch(g, h, a) + 0xbef9a3f7 + W[62];
aca111196   Hans de Goede   crypto: sha256 - ...
197
  	t2 = e0(c) + Maj(c, d, e);    f += t1;    b = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
198
  	t1 = a + e1(f) + Ch(f, g, h) + 0xc67178f2 + W[63];
aca111196   Hans de Goede   crypto: sha256 - ...
199
  	t2 = e0(b) + Maj(b, c, d);    e += t1;    a = t1 + t2;
daeba0641   Vivek Goyal   purgatory/sha256:...
200
201
202
203
204
205
  
  	state[0] += a; state[1] += b; state[2] += c; state[3] += d;
  	state[4] += e; state[5] += f; state[6] += g; state[7] += h;
  
  	/* clear any sensitive info... */
  	a = b = c = d = e = f = g = h = t1 = t2 = 0;
906a4bb97   Hans de Goede   crypto: sha256 - ...
206
  	memzero_explicit(W, 64 * sizeof(u32));
daeba0641   Vivek Goyal   purgatory/sha256:...
207
  }
13855fd8c   Eric Biggers   crypto: lib/sha25...
208
  void sha256_update(struct sha256_state *sctx, const u8 *data, unsigned int len)
daeba0641   Vivek Goyal   purgatory/sha256:...
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
  {
  	unsigned int partial, done;
  	const u8 *src;
  
  	partial = sctx->count & 0x3f;
  	sctx->count += len;
  	done = 0;
  	src = data;
  
  	if ((partial + len) > 63) {
  		if (partial) {
  			done = -partial;
  			memcpy(sctx->buf + partial, data, done + 64);
  			src = sctx->buf;
  		}
  
  		do {
  			sha256_transform(sctx->state, src);
  			done += 64;
  			src = data + done;
  		} while (done + 63 < len);
  
  		partial = 0;
  	}
  	memcpy(sctx->buf + partial, src, len - done);
daeba0641   Vivek Goyal   purgatory/sha256:...
234
  }
01d3aee86   Hans de Goede   crypto: sha256 - ...
235
  EXPORT_SYMBOL(sha256_update);
daeba0641   Vivek Goyal   purgatory/sha256:...
236

13855fd8c   Eric Biggers   crypto: lib/sha25...
237
  void sha224_update(struct sha256_state *sctx, const u8 *data, unsigned int len)
7d2f5b0c4   Hans de Goede   crypto: sha256 - ...
238
  {
13855fd8c   Eric Biggers   crypto: lib/sha25...
239
  	sha256_update(sctx, data, len);
7d2f5b0c4   Hans de Goede   crypto: sha256 - ...
240
241
  }
  EXPORT_SYMBOL(sha224_update);
13855fd8c   Eric Biggers   crypto: lib/sha25...
242
  static void __sha256_final(struct sha256_state *sctx, u8 *out, int digest_words)
daeba0641   Vivek Goyal   purgatory/sha256:...
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
  {
  	__be32 *dst = (__be32 *)out;
  	__be64 bits;
  	unsigned int index, pad_len;
  	int i;
  	static const u8 padding[64] = { 0x80, };
  
  	/* Save number of bits */
  	bits = cpu_to_be64(sctx->count << 3);
  
  	/* Pad out to 56 mod 64. */
  	index = sctx->count & 0x3f;
  	pad_len = (index < 56) ? (56 - index) : ((64+56) - index);
  	sha256_update(sctx, padding, pad_len);
  
  	/* Append length (before padding) */
  	sha256_update(sctx, (const u8 *)&bits, sizeof(bits));
  
  	/* Store state in digest */
7d2f5b0c4   Hans de Goede   crypto: sha256 - ...
262
  	for (i = 0; i < digest_words; i++)
906a4bb97   Hans de Goede   crypto: sha256 - ...
263
  		put_unaligned_be32(sctx->state[i], &dst[i]);
daeba0641   Vivek Goyal   purgatory/sha256:...
264
265
266
  
  	/* Zeroize sensitive information. */
  	memset(sctx, 0, sizeof(*sctx));
daeba0641   Vivek Goyal   purgatory/sha256:...
267
  }
7d2f5b0c4   Hans de Goede   crypto: sha256 - ...
268

13855fd8c   Eric Biggers   crypto: lib/sha25...
269
  void sha256_final(struct sha256_state *sctx, u8 *out)
7d2f5b0c4   Hans de Goede   crypto: sha256 - ...
270
  {
13855fd8c   Eric Biggers   crypto: lib/sha25...
271
  	__sha256_final(sctx, out, 8);
7d2f5b0c4   Hans de Goede   crypto: sha256 - ...
272
  }
01d3aee86   Hans de Goede   crypto: sha256 - ...
273
  EXPORT_SYMBOL(sha256_final);
7d2f5b0c4   Hans de Goede   crypto: sha256 - ...
274

13855fd8c   Eric Biggers   crypto: lib/sha25...
275
  void sha224_final(struct sha256_state *sctx, u8 *out)
7d2f5b0c4   Hans de Goede   crypto: sha256 - ...
276
  {
13855fd8c   Eric Biggers   crypto: lib/sha25...
277
  	__sha256_final(sctx, out, 7);
7d2f5b0c4   Hans de Goede   crypto: sha256 - ...
278
279
  }
  EXPORT_SYMBOL(sha224_final);
9ecf5ad52   Hans de Goede   crypto: sha256 - ...
280

9ea9c58b4   Eric Biggers   crypto: lib/sha25...
281
282
283
284
285
286
287
288
289
  void sha256(const u8 *data, unsigned int len, u8 *out)
  {
  	struct sha256_state sctx;
  
  	sha256_init(&sctx);
  	sha256_update(&sctx, data, len);
  	sha256_final(&sctx, out);
  }
  EXPORT_SYMBOL(sha256);
9ecf5ad52   Hans de Goede   crypto: sha256 - ...
290
  MODULE_LICENSE("GPL");