summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPauli <paul.dale@oracle.com>2020-06-03 18:42:36 +1000
committerPauli <paul.dale@oracle.com>2020-06-03 21:17:18 +1000
commit19d15f97b3932d14e17d0b61115b664169ca6159 (patch)
treeb6b5dd69f7563d282c16c50585513a2a285e4f7f
parent42fa3e66697baa121220b4eacf03607280e4ff89 (diff)
ossl_shim: const cast the param arguments to avoid errors
[extended tests] Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/12022)
-rw-r--r--test/ossl_shim/ossl_shim.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/ossl_shim/ossl_shim.cc b/test/ossl_shim/ossl_shim.cc
index e7c1dfe09f..aeaea100ad 100644
--- a/test/ossl_shim/ossl_shim.cc
+++ b/test/ossl_shim/ossl_shim.cc
@@ -394,8 +394,10 @@ static int TicketKeyCallback(SSL *ssl, uint8_t *key_name, uint8_t *iv,
return 0;
}
- *p++ = OSSL_PARAM_construct_utf8_string(OSSL_MAC_PARAM_DIGEST, "SHA256", 0);
- *p++ = OSSL_PARAM_construct_octet_string(OSSL_MAC_PARAM_KEY, kZeros,
+ *p++ = OSSL_PARAM_construct_utf8_string(OSSL_MAC_PARAM_DIGEST,
+ const_cast<char *>("SHA256"), 0);
+ *p++ = OSSL_PARAM_construct_octet_string(OSSL_MAC_PARAM_KEY,
+ (void *)kZeros,
sizeof(kZeros));
*p = OSSL_PARAM_construct_end();