luwenpeng
luwenpeng
Is there any progress about this issue? Looking forward to libevent early support asynchronous openssl。
Yes, it's the same version as inissue [#123](https://github.com/intel/QAT_Engine/issues/123)
During QAT configure, I set --enable-qat_small_pkt_offload. I also set ssl_ciphers 'AES128-SHA: AES256-SHA' in nginx.conf. qat_debug_log still cannot see the symmetric encryption information. ``` ./configure \ --with-qat_dir=/QAT \ --with-openssl_dir=/openssl \ --with-openssl_install_dir=/usr/local/ssl...
Thank you for your reply, the software version I use is as follows: openssl version ``` [root@localhost ~]# /openssl/apps/openssl version OpenSSL 1.1.1e-dev xx XXX xxxx ``` Nginx version ``` [root@localhost...
Hi paulturx: thank you for your reply, I executed the following command and the result is as follows: 1. When running "openssl speed -engine qat -elapsed rsa2048" or "openssl speed...
Running the following command, no symmetric encryption information related to SSL_read / SSL_write was found in the qat debug log. Does this mean that **asymmetric encrypted** data using **SSL_do_handshark** will...
* First, I recompile QAT_Engine, enable qat debugging, disable debugging files, and then all output from QAT encryption / decryption will go to stderr. ``` --enable-qat_debug # --with-qat_debug_file=/home/lwp/qat_debug_log ``` *...
Hi paulturx: thank you for your help! I modified the source code of OpenSSL 1.1.1e-dev and added the following code to s_client.c / s_server.c: ``` SSL_CTX_set_options (ctx, SSL_OP_NO_ENCRYPT_THEN_MAC); ``` After...
I checked some information and found that ENCRYPT_THEN_MAC was introduced to solve security problems. ENCRYPT_THEN_MAC is enabled by default in openssl-1.1.1. Our tests show that symmetric encryption can be offloaded...