Fix provider cipher reinit issue
[openssl.git] / crypto / evp / e_aes.c
index 05be21901db816731a7e5c87eadd2ef4f5528f1d..c037090695eecf6cc3dd75aec2e23c45b97743d2 100644 (file)
@@ -4061,7 +4061,7 @@ static int aes_siv_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
 
     /* klen is the length of the underlying cipher, not the input key,
        which should be twice as long */
-    return CRYPTO_siv128_init(sctx, key, klen, cbc, ctr);
+    return CRYPTO_siv128_init(sctx, key, klen, cbc, ctr, NULL, NULL);
 }
 
 #define aesni_siv_cipher aes_siv_cipher