jintaoc3

Results 5 comments of jintaoc3

Hi Paul, I am using QAT engine 1.7 with c62x and OPENSSL 1.1.1g. Basically I have configured it using the commands listed in the documentation of this git repository to...

I tried calling ENGINE_load_builtin_engines(); ENGINE_by_id("qat") right after OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CONFIG, NULL); but that gives me NULL. So I am not sure if the engine is loaded after all.

Yes. The thing about ENCRYPT_THEN_MAC is indeed the problem. Thank you.

On a related note, I noticed the tasks are offloaded to engine only when the openssl is statically linked to my program but fails to work when I dynamically load...

The ssl functions (ex. ssl_write, ssl_read) that I use are always loaded dynamically, but in order for the engine to work, I had to also put in -L/path -lssl -lcrypto...