|
|
@@ -68,7 +68,7 @@ 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)
|
|
|
+void sha256_transform(u32 *state, const u8 *input)
|
|
|
{
|
|
|
u32 a, b, c, d, e, f, g, h, t1, t2;
|
|
|
u32 W[64];
|
|
|
@@ -230,6 +230,7 @@ static void sha256_transform(u32 *state, const u8 *input)
|
|
|
a = b = c = d = e = f = g = h = t1 = t2 = 0;
|
|
|
memzero_explicit(W, 64 * sizeof(u32));
|
|
|
}
|
|
|
+EXPORT_SYMBOL(sha256_transform);
|
|
|
|
|
|
static void sha256_generic_block_fn(struct sha256_state *sst, u8 const *src,
|
|
|
int blocks)
|