summaryrefslogtreecommitdiffstats
path: root/providers/implementations/macs/blake2_mac_impl.c
diff options
context:
space:
mode:
authorPauli <ppzgs1@gmail.com>2021-03-10 18:37:07 +1000
committerPauli <ppzgs1@gmail.com>2021-03-12 08:27:30 +1000
commit5a6b62bb427e828edecf52c2280f9958d97142b6 (patch)
tree121039d5162dc7217cba2be80b79589b70d10ea5 /providers/implementations/macs/blake2_mac_impl.c
parentc983a0e5214db7f0a668f5e9ddda9362ca0d6ac9 (diff)
update set_ctx_param MAC calls to return 1 for a NULL params
Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/14383)
Diffstat (limited to 'providers/implementations/macs/blake2_mac_impl.c')
-rw-r--r--providers/implementations/macs/blake2_mac_impl.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/providers/implementations/macs/blake2_mac_impl.c b/providers/implementations/macs/blake2_mac_impl.c
index 35a162246e..e1ffa04bfd 100644
--- a/providers/implementations/macs/blake2_mac_impl.c
+++ b/providers/implementations/macs/blake2_mac_impl.c
@@ -185,6 +185,9 @@ static int blake2_mac_set_ctx_params(void *vmacctx, const OSSL_PARAM params[])
struct blake2_mac_data_st *macctx = vmacctx;
const OSSL_PARAM *p;
+ if (params == NULL)
+ return 1;
+
if ((p = OSSL_PARAM_locate_const(params, OSSL_MAC_PARAM_SIZE)) != NULL) {
size_t size;