From 491bfe86062464b892386e8c8dfe0069975ecedc Mon Sep 17 00:00:00 2001 From: AKASHI Takahiro Date: Tue, 16 Jun 2020 14:26:48 +0900 Subject: lib: rsa: export rsa_verify_with_pkey() This function will be used to implement public_key_verify_signature() in a later patch. rsa_verify() is not suitable here because calculation of message digest is not necessary. Signed-off-by: AKASHI Takahiro Reviewed-by: Heinrich Schuchardt --- include/u-boot/rsa.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include') diff --git a/include/u-boot/rsa.h b/include/u-boot/rsa.h index a0bae495f05..bed1c097c2c 100644 --- a/include/u-boot/rsa.h +++ b/include/u-boot/rsa.h @@ -112,6 +112,9 @@ int rsa_verify(struct image_sign_info *info, const struct image_region region[], int region_count, uint8_t *sig, uint sig_len); +int rsa_verify_with_pkey(struct image_sign_info *info, + const void *hash, uint8_t *sig, uint sig_len); + int padding_pkcs_15_verify(struct image_sign_info *info, uint8_t *msg, int msg_len, const uint8_t *hash, int hash_len); -- cgit v1.2.3