From 2432c3f2c3014ffd3cab7ed2405e988a3a533387 Mon Sep 17 00:00:00 2001 From: Zhangfei Gao Date: Sat, 11 May 2024 08:10:51 +0000 Subject: [PATCH 13/15] cipher: remove aead in v2 temporarily for nginx The aead has issues causing nginx failure. log: do aead update operation failed, ret: -22, state: 0! Temporarily, remove aead support to make nginx work. Signed-off-by: Zhangfei Gao --- src/uadk_cipher_adapter.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/uadk_cipher_adapter.c b/src/uadk_cipher_adapter.c index caf8af3..b4a7a0e 100644 --- a/src/uadk_cipher_adapter.c +++ b/src/uadk_cipher_adapter.c @@ -34,9 +34,6 @@ static int cipher_hw_v2_nids[] = { NID_sm4_ecb, NID_des_ede3_cbc, NID_des_ede3_ecb, - NID_aes_128_gcm, - NID_aes_192_gcm, - NID_aes_256_gcm }; static int cipher_hw_v3_nids[] = { -- 2.43.0