summaryrefslogtreecommitdiff
path: root/firmware/2lib/include/2sha_private.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/2lib/include/2sha_private.h')
-rw-r--r--firmware/2lib/include/2sha_private.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/firmware/2lib/include/2sha_private.h b/firmware/2lib/include/2sha_private.h
index 337f97ee..d6d4bbae 100644
--- a/firmware/2lib/include/2sha_private.h
+++ b/firmware/2lib/include/2sha_private.h
@@ -19,6 +19,8 @@
extern const uint32_t vb2_sha256_h0[8];
extern const uint32_t vb2_sha256_k[64];
+extern const uint32_t vb2_hash_seq[8];
+extern struct vb2_sha256_context vb2_sha_ctx;
#define UNPACK32(x, str) \
{ \
@@ -35,4 +37,7 @@ extern const uint32_t vb2_sha256_k[64];
| ((uint32_t) *((str) + 1) << 16) \
| ((uint32_t) *((str) + 0) << 24); \
}
+
+void vb2_sha256_transform_hwcrypto(const uint8_t *message,
+ unsigned int block_nb);
#endif /* VBOOT_REFERENCE_2SHA_PRIVATE_H_ */