diff options
author | Pauli <paul.dale@oracle.com> | 2020-06-03 10:42:36 +0200 |
---|---|---|
committer | Pauli <paul.dale@oracle.com> | 2020-06-03 13:17:18 +0200 |
commit | 19d15f97b3932d14e17d0b61115b664169ca6159 (patch) | |
tree | b6b5dd69f7563d282c16c50585513a2a285e4f7f /test/ossl_shim/ossl_shim.cc | |
parent | Fix a buffer overflow in drbg_ctr_generate (diff) | |
download | openssl-19d15f97b3932d14e17d0b61115b664169ca6159.tar.xz openssl-19d15f97b3932d14e17d0b61115b664169ca6159.zip |
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)
Diffstat (limited to '')
-rw-r--r-- | test/ossl_shim/ossl_shim.cc | 6 |
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(); |