Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 2 | /* |
| 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 Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 12 | */ |
| 13 | |
| 14 | #include <linux/bitops.h> |
Hans de Goede | 01d3aee | 2019-08-17 16:24:33 +0200 | [diff] [blame] | 15 | #include <linux/export.h> |
Hans de Goede | 9ecf5ad | 2019-08-25 20:18:41 +0200 | [diff] [blame] | 16 | #include <linux/module.h> |
Philipp Rudo | df6f280 | 2018-04-13 15:36:46 -0700 | [diff] [blame] | 17 | #include <linux/string.h> |
Hans de Goede | 34d6245 | 2019-09-01 22:35:31 +0200 | [diff] [blame] | 18 | #include <crypto/sha.h> |
Hans de Goede | 906a4bb | 2019-08-17 16:24:32 +0200 | [diff] [blame] | 19 | #include <asm/unaligned.h> |
Ard Biesheuvel | 7a689eb | 2021-04-12 12:51:16 +0200 | [diff] [blame] | 20 | #include <trace/hooks/fips140.h> |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 21 | |
| 22 | static inline u32 Ch(u32 x, u32 y, u32 z) |
| 23 | { |
| 24 | return z ^ (x & (y ^ z)); |
| 25 | } |
| 26 | |
| 27 | static 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 | |
| 37 | static inline void LOAD_OP(int I, u32 *W, const u8 *input) |
| 38 | { |
Hans de Goede | 906a4bb | 2019-08-17 16:24:32 +0200 | [diff] [blame] | 39 | W[I] = get_unaligned_be32((__u32 *)input + I); |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 40 | } |
| 41 | |
| 42 | static 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 | |
| 47 | static 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 Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 98 | t2 = e0(b) + Maj(b, c, d); e += t1; a = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 99 | |
| 100 | t1 = h + e1(e) + Ch(e, f, g) + 0xe49b69c1 + W[16]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 101 | t2 = e0(a) + Maj(a, b, c); d += t1; h = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 102 | t1 = g + e1(d) + Ch(d, e, f) + 0xefbe4786 + W[17]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 103 | t2 = e0(h) + Maj(h, a, b); c += t1; g = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 104 | t1 = f + e1(c) + Ch(c, d, e) + 0x0fc19dc6 + W[18]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 105 | t2 = e0(g) + Maj(g, h, a); b += t1; f = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 106 | t1 = e + e1(b) + Ch(b, c, d) + 0x240ca1cc + W[19]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 107 | t2 = e0(f) + Maj(f, g, h); a += t1; e = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 108 | t1 = d + e1(a) + Ch(a, b, c) + 0x2de92c6f + W[20]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 109 | t2 = e0(e) + Maj(e, f, g); h += t1; d = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 110 | t1 = c + e1(h) + Ch(h, a, b) + 0x4a7484aa + W[21]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 111 | t2 = e0(d) + Maj(d, e, f); g += t1; c = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 112 | t1 = b + e1(g) + Ch(g, h, a) + 0x5cb0a9dc + W[22]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 113 | t2 = e0(c) + Maj(c, d, e); f += t1; b = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 114 | t1 = a + e1(f) + Ch(f, g, h) + 0x76f988da + W[23]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 115 | t2 = e0(b) + Maj(b, c, d); e += t1; a = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 116 | |
| 117 | t1 = h + e1(e) + Ch(e, f, g) + 0x983e5152 + W[24]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 118 | t2 = e0(a) + Maj(a, b, c); d += t1; h = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 119 | t1 = g + e1(d) + Ch(d, e, f) + 0xa831c66d + W[25]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 120 | t2 = e0(h) + Maj(h, a, b); c += t1; g = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 121 | t1 = f + e1(c) + Ch(c, d, e) + 0xb00327c8 + W[26]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 122 | t2 = e0(g) + Maj(g, h, a); b += t1; f = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 123 | t1 = e + e1(b) + Ch(b, c, d) + 0xbf597fc7 + W[27]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 124 | t2 = e0(f) + Maj(f, g, h); a += t1; e = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 125 | t1 = d + e1(a) + Ch(a, b, c) + 0xc6e00bf3 + W[28]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 126 | t2 = e0(e) + Maj(e, f, g); h += t1; d = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 127 | t1 = c + e1(h) + Ch(h, a, b) + 0xd5a79147 + W[29]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 128 | t2 = e0(d) + Maj(d, e, f); g += t1; c = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 129 | t1 = b + e1(g) + Ch(g, h, a) + 0x06ca6351 + W[30]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 130 | t2 = e0(c) + Maj(c, d, e); f += t1; b = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 131 | t1 = a + e1(f) + Ch(f, g, h) + 0x14292967 + W[31]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 132 | t2 = e0(b) + Maj(b, c, d); e += t1; a = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 133 | |
| 134 | t1 = h + e1(e) + Ch(e, f, g) + 0x27b70a85 + W[32]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 135 | t2 = e0(a) + Maj(a, b, c); d += t1; h = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 136 | t1 = g + e1(d) + Ch(d, e, f) + 0x2e1b2138 + W[33]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 137 | t2 = e0(h) + Maj(h, a, b); c += t1; g = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 138 | t1 = f + e1(c) + Ch(c, d, e) + 0x4d2c6dfc + W[34]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 139 | t2 = e0(g) + Maj(g, h, a); b += t1; f = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 140 | t1 = e + e1(b) + Ch(b, c, d) + 0x53380d13 + W[35]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 141 | t2 = e0(f) + Maj(f, g, h); a += t1; e = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 142 | t1 = d + e1(a) + Ch(a, b, c) + 0x650a7354 + W[36]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 143 | t2 = e0(e) + Maj(e, f, g); h += t1; d = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 144 | t1 = c + e1(h) + Ch(h, a, b) + 0x766a0abb + W[37]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 145 | t2 = e0(d) + Maj(d, e, f); g += t1; c = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 146 | t1 = b + e1(g) + Ch(g, h, a) + 0x81c2c92e + W[38]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 147 | t2 = e0(c) + Maj(c, d, e); f += t1; b = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 148 | t1 = a + e1(f) + Ch(f, g, h) + 0x92722c85 + W[39]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 149 | t2 = e0(b) + Maj(b, c, d); e += t1; a = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 150 | |
| 151 | t1 = h + e1(e) + Ch(e, f, g) + 0xa2bfe8a1 + W[40]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 152 | t2 = e0(a) + Maj(a, b, c); d += t1; h = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 153 | t1 = g + e1(d) + Ch(d, e, f) + 0xa81a664b + W[41]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 154 | t2 = e0(h) + Maj(h, a, b); c += t1; g = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 155 | t1 = f + e1(c) + Ch(c, d, e) + 0xc24b8b70 + W[42]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 156 | t2 = e0(g) + Maj(g, h, a); b += t1; f = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 157 | t1 = e + e1(b) + Ch(b, c, d) + 0xc76c51a3 + W[43]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 158 | t2 = e0(f) + Maj(f, g, h); a += t1; e = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 159 | t1 = d + e1(a) + Ch(a, b, c) + 0xd192e819 + W[44]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 160 | t2 = e0(e) + Maj(e, f, g); h += t1; d = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 161 | t1 = c + e1(h) + Ch(h, a, b) + 0xd6990624 + W[45]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 162 | t2 = e0(d) + Maj(d, e, f); g += t1; c = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 163 | t1 = b + e1(g) + Ch(g, h, a) + 0xf40e3585 + W[46]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 164 | t2 = e0(c) + Maj(c, d, e); f += t1; b = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 165 | t1 = a + e1(f) + Ch(f, g, h) + 0x106aa070 + W[47]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 166 | t2 = e0(b) + Maj(b, c, d); e += t1; a = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 167 | |
| 168 | t1 = h + e1(e) + Ch(e, f, g) + 0x19a4c116 + W[48]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 169 | t2 = e0(a) + Maj(a, b, c); d += t1; h = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 170 | t1 = g + e1(d) + Ch(d, e, f) + 0x1e376c08 + W[49]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 171 | t2 = e0(h) + Maj(h, a, b); c += t1; g = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 172 | t1 = f + e1(c) + Ch(c, d, e) + 0x2748774c + W[50]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 173 | t2 = e0(g) + Maj(g, h, a); b += t1; f = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 174 | t1 = e + e1(b) + Ch(b, c, d) + 0x34b0bcb5 + W[51]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 175 | t2 = e0(f) + Maj(f, g, h); a += t1; e = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 176 | t1 = d + e1(a) + Ch(a, b, c) + 0x391c0cb3 + W[52]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 177 | t2 = e0(e) + Maj(e, f, g); h += t1; d = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 178 | t1 = c + e1(h) + Ch(h, a, b) + 0x4ed8aa4a + W[53]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 179 | t2 = e0(d) + Maj(d, e, f); g += t1; c = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 180 | t1 = b + e1(g) + Ch(g, h, a) + 0x5b9cca4f + W[54]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 181 | t2 = e0(c) + Maj(c, d, e); f += t1; b = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 182 | t1 = a + e1(f) + Ch(f, g, h) + 0x682e6ff3 + W[55]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 183 | t2 = e0(b) + Maj(b, c, d); e += t1; a = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 184 | |
| 185 | t1 = h + e1(e) + Ch(e, f, g) + 0x748f82ee + W[56]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 186 | t2 = e0(a) + Maj(a, b, c); d += t1; h = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 187 | t1 = g + e1(d) + Ch(d, e, f) + 0x78a5636f + W[57]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 188 | t2 = e0(h) + Maj(h, a, b); c += t1; g = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 189 | t1 = f + e1(c) + Ch(c, d, e) + 0x84c87814 + W[58]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 190 | t2 = e0(g) + Maj(g, h, a); b += t1; f = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 191 | t1 = e + e1(b) + Ch(b, c, d) + 0x8cc70208 + W[59]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 192 | t2 = e0(f) + Maj(f, g, h); a += t1; e = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 193 | t1 = d + e1(a) + Ch(a, b, c) + 0x90befffa + W[60]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 194 | t2 = e0(e) + Maj(e, f, g); h += t1; d = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 195 | t1 = c + e1(h) + Ch(h, a, b) + 0xa4506ceb + W[61]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 196 | t2 = e0(d) + Maj(d, e, f); g += t1; c = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 197 | t1 = b + e1(g) + Ch(g, h, a) + 0xbef9a3f7 + W[62]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 198 | t2 = e0(c) + Maj(c, d, e); f += t1; b = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 199 | t1 = a + e1(f) + Ch(f, g, h) + 0xc67178f2 + W[63]; |
Hans de Goede | aca1111 | 2019-08-17 16:24:29 +0200 | [diff] [blame] | 200 | t2 = e0(b) + Maj(b, c, d); e += t1; a = t1 + t2; |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 201 | |
| 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 Goede | 906a4bb | 2019-08-17 16:24:32 +0200 | [diff] [blame] | 207 | memzero_explicit(W, 64 * sizeof(u32)); |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 208 | } |
| 209 | |
Eric Biggers | 13855fd | 2020-05-01 09:42:29 -0700 | [diff] [blame] | 210 | void sha256_update(struct sha256_state *sctx, const u8 *data, unsigned int len) |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 211 | { |
| 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 Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 236 | } |
Hans de Goede | 01d3aee | 2019-08-17 16:24:33 +0200 | [diff] [blame] | 237 | EXPORT_SYMBOL(sha256_update); |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 238 | |
Eric Biggers | 13855fd | 2020-05-01 09:42:29 -0700 | [diff] [blame] | 239 | void sha224_update(struct sha256_state *sctx, const u8 *data, unsigned int len) |
Hans de Goede | 7d2f5b0 | 2019-08-17 16:24:34 +0200 | [diff] [blame] | 240 | { |
Eric Biggers | 13855fd | 2020-05-01 09:42:29 -0700 | [diff] [blame] | 241 | sha256_update(sctx, data, len); |
Hans de Goede | 7d2f5b0 | 2019-08-17 16:24:34 +0200 | [diff] [blame] | 242 | } |
| 243 | EXPORT_SYMBOL(sha224_update); |
| 244 | |
Eric Biggers | 13855fd | 2020-05-01 09:42:29 -0700 | [diff] [blame] | 245 | static void __sha256_final(struct sha256_state *sctx, u8 *out, int digest_words) |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 246 | { |
| 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 Goede | 7d2f5b0 | 2019-08-17 16:24:34 +0200 | [diff] [blame] | 265 | for (i = 0; i < digest_words; i++) |
Hans de Goede | 906a4bb | 2019-08-17 16:24:32 +0200 | [diff] [blame] | 266 | put_unaligned_be32(sctx->state[i], &dst[i]); |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 267 | |
| 268 | /* Zeroize sensitive information. */ |
| 269 | memset(sctx, 0, sizeof(*sctx)); |
Vivek Goyal | daeba064 | 2014-08-08 14:25:59 -0700 | [diff] [blame] | 270 | } |
Hans de Goede | 7d2f5b0 | 2019-08-17 16:24:34 +0200 | [diff] [blame] | 271 | |
Eric Biggers | 13855fd | 2020-05-01 09:42:29 -0700 | [diff] [blame] | 272 | void sha256_final(struct sha256_state *sctx, u8 *out) |
Hans de Goede | 7d2f5b0 | 2019-08-17 16:24:34 +0200 | [diff] [blame] | 273 | { |
Eric Biggers | 13855fd | 2020-05-01 09:42:29 -0700 | [diff] [blame] | 274 | __sha256_final(sctx, out, 8); |
Hans de Goede | 7d2f5b0 | 2019-08-17 16:24:34 +0200 | [diff] [blame] | 275 | } |
Hans de Goede | 01d3aee | 2019-08-17 16:24:33 +0200 | [diff] [blame] | 276 | EXPORT_SYMBOL(sha256_final); |
Hans de Goede | 7d2f5b0 | 2019-08-17 16:24:34 +0200 | [diff] [blame] | 277 | |
Eric Biggers | 13855fd | 2020-05-01 09:42:29 -0700 | [diff] [blame] | 278 | void sha224_final(struct sha256_state *sctx, u8 *out) |
Hans de Goede | 7d2f5b0 | 2019-08-17 16:24:34 +0200 | [diff] [blame] | 279 | { |
Eric Biggers | 13855fd | 2020-05-01 09:42:29 -0700 | [diff] [blame] | 280 | __sha256_final(sctx, out, 7); |
Hans de Goede | 7d2f5b0 | 2019-08-17 16:24:34 +0200 | [diff] [blame] | 281 | } |
| 282 | EXPORT_SYMBOL(sha224_final); |
Hans de Goede | 9ecf5ad | 2019-08-25 20:18:41 +0200 | [diff] [blame] | 283 | |
Eric Biggers | 9ea9c58 | 2020-07-08 09:39:40 -0700 | [diff] [blame] | 284 | void sha256(const u8 *data, unsigned int len, u8 *out) |
| 285 | { |
| 286 | struct sha256_state sctx; |
| 287 | |
Ard Biesheuvel | 7a689eb | 2021-04-12 12:51:16 +0200 | [diff] [blame] | 288 | #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 Biggers | 9ea9c58 | 2020-07-08 09:39:40 -0700 | [diff] [blame] | 296 | sha256_init(&sctx); |
| 297 | sha256_update(&sctx, data, len); |
| 298 | sha256_final(&sctx, out); |
| 299 | } |
| 300 | EXPORT_SYMBOL(sha256); |
| 301 | |
Hans de Goede | 9ecf5ad | 2019-08-25 20:18:41 +0200 | [diff] [blame] | 302 | MODULE_LICENSE("GPL"); |