The EVP_MAC functions have been renamed for consistency. The EVP_MAC_CTX_*
[oweals/openssl.git] / test / sslapitest.c
index 23e6b7d0f63f9af69e71a7a27b8d8e76a23265bf..46655690546206dac01b71b340dae6dfce385f51 100644 (file)
@@ -6922,7 +6922,7 @@ static int tick_key_evp_cb(SSL *s, unsigned char key_name[16],
     params[2] = OSSL_PARAM_construct_end();
     if (aes128cbc == NULL
             || !EVP_CipherInit_ex(ctx, aes128cbc, NULL, tick_aes_key, iv, enc)
-            || !EVP_MAC_CTX_set_params(hctx, params)
+            || !EVP_MAC_set_ctx_params(hctx, params)
             || !EVP_MAC_init(hctx))
         ret = -1;
     else