summaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
authorJiasheng Jiang <jiasheng@purdue.edu>2024-03-21 19:55:34 +0000
committerTomas Mraz <tomas@openssl.org>2024-03-25 17:45:33 +0100
commitf13ddaab69def0b453b75a8f2deb80e1f1634f42 (patch)
tree7fd61d7ee09e647bc5925c95ea002f28f59decf1 /demos
parent01eaf203856bfbb63051f8ecf56eae2d21132496 (diff)
Replace unsigned with int
Replace the type of "digest_length" with int to avoid implicit conversion when it is assigned by EVP_MD_get_size(). Otherwise, it may pass the following check and cause the integer overflow error when EVP_MD_get_size() returns negative numbers. Signed-off-by: Jiasheng Jiang <jiasheng@purdue.edu> Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/23922)
Diffstat (limited to 'demos')
-rw-r--r--demos/digest/EVP_MD_demo.c2
-rw-r--r--demos/digest/EVP_MD_stdin.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/demos/digest/EVP_MD_demo.c b/demos/digest/EVP_MD_demo.c
index 8cf3bd8e7b..dd0800c70b 100644
--- a/demos/digest/EVP_MD_demo.c
+++ b/demos/digest/EVP_MD_demo.c
@@ -83,7 +83,7 @@ int demonstrate_digest(void)
const char *option_properties = NULL;
EVP_MD *message_digest = NULL;
EVP_MD_CTX *digest_context = NULL;
- unsigned int digest_length;
+ int digest_length;
unsigned char *digest_value = NULL;
int j;
diff --git a/demos/digest/EVP_MD_stdin.c b/demos/digest/EVP_MD_stdin.c
index 11bffb6bcc..948f997181 100644
--- a/demos/digest/EVP_MD_stdin.c
+++ b/demos/digest/EVP_MD_stdin.c
@@ -38,7 +38,7 @@ int demonstrate_digest(BIO *input)
const char *option_properties = NULL;
EVP_MD *message_digest = NULL;
EVP_MD_CTX *digest_context = NULL;
- unsigned int digest_length;
+ int digest_length;
unsigned char *digest_value = NULL;
unsigned char buffer[512];
int ii;