summaryrefslogtreecommitdiff
path: root/host/include/host_signature.h
diff options
context:
space:
mode:
Diffstat (limited to 'host/include/host_signature.h')
-rw-r--r--host/include/host_signature.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/host/include/host_signature.h b/host/include/host_signature.h
index f08547c8..fb03c6c5 100644
--- a/host/include/host_signature.h
+++ b/host/include/host_signature.h
@@ -36,6 +36,13 @@ int SignatureCopy(VbSignature* dest, const VbSignature* src);
VbSignature* CalculateChecksum(const uint8_t* data, uint64_t size);
+/* Calculates a hash of the data using the algorithm from the specified key.
+ * Caller owns the returned pointer, and must free it with Free().
+ *
+ * Returns NULL on error. */
+VbSignature* CalculateHash(const uint8_t* data, uint64_t size,
+ const VbPrivateKey* key);
+
/* Calculates a signature for the data using the specified key.
* Caller owns the returned pointer, and must free it with Free().
*