blob: 216a0d9787b065f88e36cab04d4e5ae9a203552c [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Vivek Goyaldaeba0642014-08-08 14:25:59 -07002/*
3 * SHA-256, as specified in
4 * http://csrc.nist.gov/groups/STM/cavp/documents/shs/sha256-384-512.pdf
5 *
6 * SHA-256 code by Jean-Luc Cooke <jlcooke@certainkey.com>.
7 *
8 * Copyright (c) Jean-Luc Cooke <jlcooke@certainkey.com>
9 * Copyright (c) Andrew McDonald <andrew@mcdonald.org.uk>
10 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
11 * Copyright (c) 2014 Red Hat Inc.
Vivek Goyaldaeba0642014-08-08 14:25:59 -070012 */
13
14#include <linux/bitops.h>
Hans de Goede01d3aee2019-08-17 16:24:33 +020015#include <linux/export.h>
Hans de Goede9ecf5ad2019-08-25 20:18:41 +020016#include <linux/module.h>
Philipp Rudodf6f2802018-04-13 15:36:46 -070017#include <linux/string.h>
Hans de Goede34d62452019-09-01 22:35:31 +020018#include <crypto/sha.h>
Hans de Goede906a4bb2019-08-17 16:24:32 +020019#include <asm/unaligned.h>
Ard Biesheuvel7a689eb2021-04-12 12:51:16 +020020#include <trace/hooks/fips140.h>
Vivek Goyaldaeba0642014-08-08 14:25:59 -070021
22static inline u32 Ch(u32 x, u32 y, u32 z)
23{
24 return z ^ (x & (y ^ z));
25}
26
27static inline u32 Maj(u32 x, u32 y, u32 z)
28{
29 return (x & y) | (z & (x | y));
30}
31
32#define e0(x) (ror32(x, 2) ^ ror32(x, 13) ^ ror32(x, 22))
33#define e1(x) (ror32(x, 6) ^ ror32(x, 11) ^ ror32(x, 25))
34#define s0(x) (ror32(x, 7) ^ ror32(x, 18) ^ (x >> 3))
35#define s1(x) (ror32(x, 17) ^ ror32(x, 19) ^ (x >> 10))
36
37static inline void LOAD_OP(int I, u32 *W, const u8 *input)
38{
Hans de Goede906a4bb2019-08-17 16:24:32 +020039 W[I] = get_unaligned_be32((__u32 *)input + I);
Vivek Goyaldaeba0642014-08-08 14:25:59 -070040}
41
42static inline void BLEND_OP(int I, u32 *W)
43{
44 W[I] = s1(W[I-2]) + W[I-7] + s0(W[I-15]) + W[I-16];
45}
46
47static void sha256_transform(u32 *state, const u8 *input)
48{
49 u32 a, b, c, d, e, f, g, h, t1, t2;
50 u32 W[64];
51 int i;
52
53 /* load the input */
54 for (i = 0; i < 16; i++)
55 LOAD_OP(i, W, input);
56
57 /* now blend */
58 for (i = 16; i < 64; i++)
59 BLEND_OP(i, W);
60
61 /* load the state into our registers */
62 a = state[0]; b = state[1]; c = state[2]; d = state[3];
63 e = state[4]; f = state[5]; g = state[6]; h = state[7];
64
65 /* now iterate */
66 t1 = h + e1(e) + Ch(e, f, g) + 0x428a2f98 + W[0];
67 t2 = e0(a) + Maj(a, b, c); d += t1; h = t1 + t2;
68 t1 = g + e1(d) + Ch(d, e, f) + 0x71374491 + W[1];
69 t2 = e0(h) + Maj(h, a, b); c += t1; g = t1 + t2;
70 t1 = f + e1(c) + Ch(c, d, e) + 0xb5c0fbcf + W[2];
71 t2 = e0(g) + Maj(g, h, a); b += t1; f = t1 + t2;
72 t1 = e + e1(b) + Ch(b, c, d) + 0xe9b5dba5 + W[3];
73 t2 = e0(f) + Maj(f, g, h); a += t1; e = t1 + t2;
74 t1 = d + e1(a) + Ch(a, b, c) + 0x3956c25b + W[4];
75 t2 = e0(e) + Maj(e, f, g); h += t1; d = t1 + t2;
76 t1 = c + e1(h) + Ch(h, a, b) + 0x59f111f1 + W[5];
77 t2 = e0(d) + Maj(d, e, f); g += t1; c = t1 + t2;
78 t1 = b + e1(g) + Ch(g, h, a) + 0x923f82a4 + W[6];
79 t2 = e0(c) + Maj(c, d, e); f += t1; b = t1 + t2;
80 t1 = a + e1(f) + Ch(f, g, h) + 0xab1c5ed5 + W[7];
81 t2 = e0(b) + Maj(b, c, d); e += t1; a = t1 + t2;
82
83 t1 = h + e1(e) + Ch(e, f, g) + 0xd807aa98 + W[8];
84 t2 = e0(a) + Maj(a, b, c); d += t1; h = t1 + t2;
85 t1 = g + e1(d) + Ch(d, e, f) + 0x12835b01 + W[9];
86 t2 = e0(h) + Maj(h, a, b); c += t1; g = t1 + t2;
87 t1 = f + e1(c) + Ch(c, d, e) + 0x243185be + W[10];
88 t2 = e0(g) + Maj(g, h, a); b += t1; f = t1 + t2;
89 t1 = e + e1(b) + Ch(b, c, d) + 0x550c7dc3 + W[11];
90 t2 = e0(f) + Maj(f, g, h); a += t1; e = t1 + t2;
91 t1 = d + e1(a) + Ch(a, b, c) + 0x72be5d74 + W[12];
92 t2 = e0(e) + Maj(e, f, g); h += t1; d = t1 + t2;
93 t1 = c + e1(h) + Ch(h, a, b) + 0x80deb1fe + W[13];
94 t2 = e0(d) + Maj(d, e, f); g += t1; c = t1 + t2;
95 t1 = b + e1(g) + Ch(g, h, a) + 0x9bdc06a7 + W[14];
96 t2 = e0(c) + Maj(c, d, e); f += t1; b = t1 + t2;
97 t1 = a + e1(f) + Ch(f, g, h) + 0xc19bf174 + W[15];
Hans de Goedeaca11112019-08-17 16:24:29 +020098 t2 = e0(b) + Maj(b, c, d); e += t1; a = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -070099
100 t1 = h + e1(e) + Ch(e, f, g) + 0xe49b69c1 + W[16];
Hans de Goedeaca11112019-08-17 16:24:29 +0200101 t2 = e0(a) + Maj(a, b, c); d += t1; h = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700102 t1 = g + e1(d) + Ch(d, e, f) + 0xefbe4786 + W[17];
Hans de Goedeaca11112019-08-17 16:24:29 +0200103 t2 = e0(h) + Maj(h, a, b); c += t1; g = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700104 t1 = f + e1(c) + Ch(c, d, e) + 0x0fc19dc6 + W[18];
Hans de Goedeaca11112019-08-17 16:24:29 +0200105 t2 = e0(g) + Maj(g, h, a); b += t1; f = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700106 t1 = e + e1(b) + Ch(b, c, d) + 0x240ca1cc + W[19];
Hans de Goedeaca11112019-08-17 16:24:29 +0200107 t2 = e0(f) + Maj(f, g, h); a += t1; e = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700108 t1 = d + e1(a) + Ch(a, b, c) + 0x2de92c6f + W[20];
Hans de Goedeaca11112019-08-17 16:24:29 +0200109 t2 = e0(e) + Maj(e, f, g); h += t1; d = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700110 t1 = c + e1(h) + Ch(h, a, b) + 0x4a7484aa + W[21];
Hans de Goedeaca11112019-08-17 16:24:29 +0200111 t2 = e0(d) + Maj(d, e, f); g += t1; c = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700112 t1 = b + e1(g) + Ch(g, h, a) + 0x5cb0a9dc + W[22];
Hans de Goedeaca11112019-08-17 16:24:29 +0200113 t2 = e0(c) + Maj(c, d, e); f += t1; b = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700114 t1 = a + e1(f) + Ch(f, g, h) + 0x76f988da + W[23];
Hans de Goedeaca11112019-08-17 16:24:29 +0200115 t2 = e0(b) + Maj(b, c, d); e += t1; a = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700116
117 t1 = h + e1(e) + Ch(e, f, g) + 0x983e5152 + W[24];
Hans de Goedeaca11112019-08-17 16:24:29 +0200118 t2 = e0(a) + Maj(a, b, c); d += t1; h = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700119 t1 = g + e1(d) + Ch(d, e, f) + 0xa831c66d + W[25];
Hans de Goedeaca11112019-08-17 16:24:29 +0200120 t2 = e0(h) + Maj(h, a, b); c += t1; g = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700121 t1 = f + e1(c) + Ch(c, d, e) + 0xb00327c8 + W[26];
Hans de Goedeaca11112019-08-17 16:24:29 +0200122 t2 = e0(g) + Maj(g, h, a); b += t1; f = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700123 t1 = e + e1(b) + Ch(b, c, d) + 0xbf597fc7 + W[27];
Hans de Goedeaca11112019-08-17 16:24:29 +0200124 t2 = e0(f) + Maj(f, g, h); a += t1; e = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700125 t1 = d + e1(a) + Ch(a, b, c) + 0xc6e00bf3 + W[28];
Hans de Goedeaca11112019-08-17 16:24:29 +0200126 t2 = e0(e) + Maj(e, f, g); h += t1; d = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700127 t1 = c + e1(h) + Ch(h, a, b) + 0xd5a79147 + W[29];
Hans de Goedeaca11112019-08-17 16:24:29 +0200128 t2 = e0(d) + Maj(d, e, f); g += t1; c = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700129 t1 = b + e1(g) + Ch(g, h, a) + 0x06ca6351 + W[30];
Hans de Goedeaca11112019-08-17 16:24:29 +0200130 t2 = e0(c) + Maj(c, d, e); f += t1; b = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700131 t1 = a + e1(f) + Ch(f, g, h) + 0x14292967 + W[31];
Hans de Goedeaca11112019-08-17 16:24:29 +0200132 t2 = e0(b) + Maj(b, c, d); e += t1; a = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700133
134 t1 = h + e1(e) + Ch(e, f, g) + 0x27b70a85 + W[32];
Hans de Goedeaca11112019-08-17 16:24:29 +0200135 t2 = e0(a) + Maj(a, b, c); d += t1; h = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700136 t1 = g + e1(d) + Ch(d, e, f) + 0x2e1b2138 + W[33];
Hans de Goedeaca11112019-08-17 16:24:29 +0200137 t2 = e0(h) + Maj(h, a, b); c += t1; g = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700138 t1 = f + e1(c) + Ch(c, d, e) + 0x4d2c6dfc + W[34];
Hans de Goedeaca11112019-08-17 16:24:29 +0200139 t2 = e0(g) + Maj(g, h, a); b += t1; f = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700140 t1 = e + e1(b) + Ch(b, c, d) + 0x53380d13 + W[35];
Hans de Goedeaca11112019-08-17 16:24:29 +0200141 t2 = e0(f) + Maj(f, g, h); a += t1; e = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700142 t1 = d + e1(a) + Ch(a, b, c) + 0x650a7354 + W[36];
Hans de Goedeaca11112019-08-17 16:24:29 +0200143 t2 = e0(e) + Maj(e, f, g); h += t1; d = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700144 t1 = c + e1(h) + Ch(h, a, b) + 0x766a0abb + W[37];
Hans de Goedeaca11112019-08-17 16:24:29 +0200145 t2 = e0(d) + Maj(d, e, f); g += t1; c = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700146 t1 = b + e1(g) + Ch(g, h, a) + 0x81c2c92e + W[38];
Hans de Goedeaca11112019-08-17 16:24:29 +0200147 t2 = e0(c) + Maj(c, d, e); f += t1; b = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700148 t1 = a + e1(f) + Ch(f, g, h) + 0x92722c85 + W[39];
Hans de Goedeaca11112019-08-17 16:24:29 +0200149 t2 = e0(b) + Maj(b, c, d); e += t1; a = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700150
151 t1 = h + e1(e) + Ch(e, f, g) + 0xa2bfe8a1 + W[40];
Hans de Goedeaca11112019-08-17 16:24:29 +0200152 t2 = e0(a) + Maj(a, b, c); d += t1; h = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700153 t1 = g + e1(d) + Ch(d, e, f) + 0xa81a664b + W[41];
Hans de Goedeaca11112019-08-17 16:24:29 +0200154 t2 = e0(h) + Maj(h, a, b); c += t1; g = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700155 t1 = f + e1(c) + Ch(c, d, e) + 0xc24b8b70 + W[42];
Hans de Goedeaca11112019-08-17 16:24:29 +0200156 t2 = e0(g) + Maj(g, h, a); b += t1; f = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700157 t1 = e + e1(b) + Ch(b, c, d) + 0xc76c51a3 + W[43];
Hans de Goedeaca11112019-08-17 16:24:29 +0200158 t2 = e0(f) + Maj(f, g, h); a += t1; e = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700159 t1 = d + e1(a) + Ch(a, b, c) + 0xd192e819 + W[44];
Hans de Goedeaca11112019-08-17 16:24:29 +0200160 t2 = e0(e) + Maj(e, f, g); h += t1; d = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700161 t1 = c + e1(h) + Ch(h, a, b) + 0xd6990624 + W[45];
Hans de Goedeaca11112019-08-17 16:24:29 +0200162 t2 = e0(d) + Maj(d, e, f); g += t1; c = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700163 t1 = b + e1(g) + Ch(g, h, a) + 0xf40e3585 + W[46];
Hans de Goedeaca11112019-08-17 16:24:29 +0200164 t2 = e0(c) + Maj(c, d, e); f += t1; b = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700165 t1 = a + e1(f) + Ch(f, g, h) + 0x106aa070 + W[47];
Hans de Goedeaca11112019-08-17 16:24:29 +0200166 t2 = e0(b) + Maj(b, c, d); e += t1; a = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700167
168 t1 = h + e1(e) + Ch(e, f, g) + 0x19a4c116 + W[48];
Hans de Goedeaca11112019-08-17 16:24:29 +0200169 t2 = e0(a) + Maj(a, b, c); d += t1; h = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700170 t1 = g + e1(d) + Ch(d, e, f) + 0x1e376c08 + W[49];
Hans de Goedeaca11112019-08-17 16:24:29 +0200171 t2 = e0(h) + Maj(h, a, b); c += t1; g = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700172 t1 = f + e1(c) + Ch(c, d, e) + 0x2748774c + W[50];
Hans de Goedeaca11112019-08-17 16:24:29 +0200173 t2 = e0(g) + Maj(g, h, a); b += t1; f = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700174 t1 = e + e1(b) + Ch(b, c, d) + 0x34b0bcb5 + W[51];
Hans de Goedeaca11112019-08-17 16:24:29 +0200175 t2 = e0(f) + Maj(f, g, h); a += t1; e = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700176 t1 = d + e1(a) + Ch(a, b, c) + 0x391c0cb3 + W[52];
Hans de Goedeaca11112019-08-17 16:24:29 +0200177 t2 = e0(e) + Maj(e, f, g); h += t1; d = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700178 t1 = c + e1(h) + Ch(h, a, b) + 0x4ed8aa4a + W[53];
Hans de Goedeaca11112019-08-17 16:24:29 +0200179 t2 = e0(d) + Maj(d, e, f); g += t1; c = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700180 t1 = b + e1(g) + Ch(g, h, a) + 0x5b9cca4f + W[54];
Hans de Goedeaca11112019-08-17 16:24:29 +0200181 t2 = e0(c) + Maj(c, d, e); f += t1; b = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700182 t1 = a + e1(f) + Ch(f, g, h) + 0x682e6ff3 + W[55];
Hans de Goedeaca11112019-08-17 16:24:29 +0200183 t2 = e0(b) + Maj(b, c, d); e += t1; a = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700184
185 t1 = h + e1(e) + Ch(e, f, g) + 0x748f82ee + W[56];
Hans de Goedeaca11112019-08-17 16:24:29 +0200186 t2 = e0(a) + Maj(a, b, c); d += t1; h = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700187 t1 = g + e1(d) + Ch(d, e, f) + 0x78a5636f + W[57];
Hans de Goedeaca11112019-08-17 16:24:29 +0200188 t2 = e0(h) + Maj(h, a, b); c += t1; g = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700189 t1 = f + e1(c) + Ch(c, d, e) + 0x84c87814 + W[58];
Hans de Goedeaca11112019-08-17 16:24:29 +0200190 t2 = e0(g) + Maj(g, h, a); b += t1; f = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700191 t1 = e + e1(b) + Ch(b, c, d) + 0x8cc70208 + W[59];
Hans de Goedeaca11112019-08-17 16:24:29 +0200192 t2 = e0(f) + Maj(f, g, h); a += t1; e = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700193 t1 = d + e1(a) + Ch(a, b, c) + 0x90befffa + W[60];
Hans de Goedeaca11112019-08-17 16:24:29 +0200194 t2 = e0(e) + Maj(e, f, g); h += t1; d = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700195 t1 = c + e1(h) + Ch(h, a, b) + 0xa4506ceb + W[61];
Hans de Goedeaca11112019-08-17 16:24:29 +0200196 t2 = e0(d) + Maj(d, e, f); g += t1; c = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700197 t1 = b + e1(g) + Ch(g, h, a) + 0xbef9a3f7 + W[62];
Hans de Goedeaca11112019-08-17 16:24:29 +0200198 t2 = e0(c) + Maj(c, d, e); f += t1; b = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700199 t1 = a + e1(f) + Ch(f, g, h) + 0xc67178f2 + W[63];
Hans de Goedeaca11112019-08-17 16:24:29 +0200200 t2 = e0(b) + Maj(b, c, d); e += t1; a = t1 + t2;
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700201
202 state[0] += a; state[1] += b; state[2] += c; state[3] += d;
203 state[4] += e; state[5] += f; state[6] += g; state[7] += h;
204
205 /* clear any sensitive info... */
206 a = b = c = d = e = f = g = h = t1 = t2 = 0;
Hans de Goede906a4bb2019-08-17 16:24:32 +0200207 memzero_explicit(W, 64 * sizeof(u32));
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700208}
209
Eric Biggers13855fd2020-05-01 09:42:29 -0700210void sha256_update(struct sha256_state *sctx, const u8 *data, unsigned int len)
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700211{
212 unsigned int partial, done;
213 const u8 *src;
214
215 partial = sctx->count & 0x3f;
216 sctx->count += len;
217 done = 0;
218 src = data;
219
220 if ((partial + len) > 63) {
221 if (partial) {
222 done = -partial;
223 memcpy(sctx->buf + partial, data, done + 64);
224 src = sctx->buf;
225 }
226
227 do {
228 sha256_transform(sctx->state, src);
229 done += 64;
230 src = data + done;
231 } while (done + 63 < len);
232
233 partial = 0;
234 }
235 memcpy(sctx->buf + partial, src, len - done);
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700236}
Hans de Goede01d3aee2019-08-17 16:24:33 +0200237EXPORT_SYMBOL(sha256_update);
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700238
Eric Biggers13855fd2020-05-01 09:42:29 -0700239void sha224_update(struct sha256_state *sctx, const u8 *data, unsigned int len)
Hans de Goede7d2f5b02019-08-17 16:24:34 +0200240{
Eric Biggers13855fd2020-05-01 09:42:29 -0700241 sha256_update(sctx, data, len);
Hans de Goede7d2f5b02019-08-17 16:24:34 +0200242}
243EXPORT_SYMBOL(sha224_update);
244
Eric Biggers13855fd2020-05-01 09:42:29 -0700245static void __sha256_final(struct sha256_state *sctx, u8 *out, int digest_words)
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700246{
247 __be32 *dst = (__be32 *)out;
248 __be64 bits;
249 unsigned int index, pad_len;
250 int i;
251 static const u8 padding[64] = { 0x80, };
252
253 /* Save number of bits */
254 bits = cpu_to_be64(sctx->count << 3);
255
256 /* Pad out to 56 mod 64. */
257 index = sctx->count & 0x3f;
258 pad_len = (index < 56) ? (56 - index) : ((64+56) - index);
259 sha256_update(sctx, padding, pad_len);
260
261 /* Append length (before padding) */
262 sha256_update(sctx, (const u8 *)&bits, sizeof(bits));
263
264 /* Store state in digest */
Hans de Goede7d2f5b02019-08-17 16:24:34 +0200265 for (i = 0; i < digest_words; i++)
Hans de Goede906a4bb2019-08-17 16:24:32 +0200266 put_unaligned_be32(sctx->state[i], &dst[i]);
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700267
268 /* Zeroize sensitive information. */
269 memset(sctx, 0, sizeof(*sctx));
Vivek Goyaldaeba0642014-08-08 14:25:59 -0700270}
Hans de Goede7d2f5b02019-08-17 16:24:34 +0200271
Eric Biggers13855fd2020-05-01 09:42:29 -0700272void sha256_final(struct sha256_state *sctx, u8 *out)
Hans de Goede7d2f5b02019-08-17 16:24:34 +0200273{
Eric Biggers13855fd2020-05-01 09:42:29 -0700274 __sha256_final(sctx, out, 8);
Hans de Goede7d2f5b02019-08-17 16:24:34 +0200275}
Hans de Goede01d3aee2019-08-17 16:24:33 +0200276EXPORT_SYMBOL(sha256_final);
Hans de Goede7d2f5b02019-08-17 16:24:34 +0200277
Eric Biggers13855fd2020-05-01 09:42:29 -0700278void sha224_final(struct sha256_state *sctx, u8 *out)
Hans de Goede7d2f5b02019-08-17 16:24:34 +0200279{
Eric Biggers13855fd2020-05-01 09:42:29 -0700280 __sha256_final(sctx, out, 7);
Hans de Goede7d2f5b02019-08-17 16:24:34 +0200281}
282EXPORT_SYMBOL(sha224_final);
Hans de Goede9ecf5ad2019-08-25 20:18:41 +0200283
Eric Biggers9ea9c582020-07-08 09:39:40 -0700284void sha256(const u8 *data, unsigned int len, u8 *out)
285{
286 struct sha256_state sctx;
287
Ard Biesheuvel7a689eb2021-04-12 12:51:16 +0200288#if defined(CONFIG_CRYPTO_FIPS140) && !defined(BUILD_FIPS140_KO)
289 int hook_inuse = 0;
290
291 trace_android_vh_sha256(data, len, out, &hook_inuse);
292 if (hook_inuse)
293 return;
294#endif
295
Eric Biggers9ea9c582020-07-08 09:39:40 -0700296 sha256_init(&sctx);
297 sha256_update(&sctx, data, len);
298 sha256_final(&sctx, out);
299}
300EXPORT_SYMBOL(sha256);
301
Hans de Goede9ecf5ad2019-08-25 20:18:41 +0200302MODULE_LICENSE("GPL");