summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2025-02-24 10:32:04 -0600
committerTom Rini <[email protected]>2025-02-24 10:32:04 -0600
commit523a56cc54637a0c04a1e87c262599faf26d7d69 (patch)
tree40db33daadc1e9f14cade4bb5fe6d03ee426788c /include
parent7520827be3dbde7fb7324d63d263d650d427c035 (diff)
Revert "Merge patch series "Add preload_check_sign tool""
This reverts commit c8750efe02c20725388dd4279896aaf306acfad4, reversing changes made to 8c6cf8aeea7e57ca686de8b765e4baf3a7ef1fa7. Unfortunately these changes do not build on macOS hosts. Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'include')
-rw-r--r--include/image.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/include/image.h b/include/image.h
index 54b1557d6c6..8a9f779d3ff 100644
--- a/include/image.h
+++ b/include/image.h
@@ -1687,24 +1687,6 @@ struct sig_header_s {
*/
int image_pre_load(ulong addr);
-#if defined(USE_HOSTCC)
-/**
- * rsa_verify_openssl() - Verify a signature against some data with openssl API
- *
- * Verify a RSA PKCS1.5/PSS signature against an expected hash.
- *
- * @info: Specifies the key and algorithms
- * @region: Pointer to the input data
- * @region_count: Number of region
- * @sig: Signature
- * @sig_len: Number of bytes in the signature
- * Return: 0 if verified, -ve on error
- */
-int rsa_verify_openssl(struct image_sign_info *info,
- const struct image_region region[], int region_count,
- uint8_t *sig, uint sig_len);
-#endif
-
/**
* fit_image_verify_required_sigs() - Verify signatures marked as 'required'
*