summaryrefslogtreecommitdiffstats
path: root/providers/fips
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2021-02-13 06:49:05 +0100
committerRichard Levitte <levitte@openssl.org>2021-02-18 16:58:17 +0100
commit3262300a2c2351c6706f37b89fef015430988a31 (patch)
tree4caae10f143f2f4e8ace562540109d7893a73a00 /providers/fips
parent247a1786e25dbf77548168572e383d57aa743af4 (diff)
Adjust the few places where the string length was confused
Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/14168)
Diffstat (limited to 'providers/fips')
-rw-r--r--providers/fips/self_test.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/providers/fips/self_test.c b/providers/fips/self_test.c
index aa9bbc770e..1848686ae3 100644
--- a/providers/fips/self_test.c
+++ b/providers/fips/self_test.c
@@ -182,8 +182,7 @@ static int verify_integrity(OSSL_CORE_BIO *bio, OSSL_FUNC_BIO_read_ex_fn read_ex
if (ctx == NULL)
goto err;
- *p++ = OSSL_PARAM_construct_utf8_string("digest", DIGEST_NAME,
- strlen(DIGEST_NAME) + 1);
+ *p++ = OSSL_PARAM_construct_utf8_string("digest", DIGEST_NAME, 0);
*p++ = OSSL_PARAM_construct_octet_string("key", fixed_key,
sizeof(fixed_key));
*p = OSSL_PARAM_construct_end();