Luis Colmenero
Luis Colmenero
[colmenero] This repository no longer contains `resources/cmake/UseOpenSSL.cmake`. It was moved to [rticonnextdds-cmake-utils](https://github.com/rticommunity/rticonnextdds-cmake-utils). I have to create an issue there, and then update the submodule in the GitHub examples repository. Once...
Hi @anhu, I'm glad to hear that it was issue to reproduce and fix. This is for professional interest. I work for a company that develops a product that can...
Hi @t8m, thanks for looking into this. Our application is essentially calling `EVP_EncryptInit_ex`, `EVP_EncryptUpdate`, `EVP_EncryptFinal_ex`, and `EVP_CIPHER_CTX_ctrl` (similarly for the receiver side). The set_param/get_param calls are not a real bottleneck...
In case it helps: `evp_cipher_init_internal` calls `EVP_CIPHER_CTX_get_key_length` and `EVP_CIPHER_CTX_get_iv_length` ([line](https://github.com/openssl/openssl/blob/19cc035b6c6f2283573d29c7ea7f7d675cf750ce/crypto/evp/evp_enc.c#L230), [line](https://github.com/openssl/openssl/blob/19cc035b6c6f2283573d29c7ea7f7d675cf750ce/crypto/evp/evp_enc.c#L355)), which end up calling `evp_do_ciph_ctx_getparams` as well. So improvements in the performance of `get_params` will also have benefits here....
Wait for @lulivi to confirm the target branch. We could discuss if we want to have these kind of links to always point to the latest documentation. The advantage is...
Thanks @embhorn, This is for professional interest. I work for a company that develops a product that can use either OpenSSL or wolfSSL as crypto library. I believe we have...