RE: Need Help for Code Changes to Upgrade from OpenSSL 1.0.2 to 3.0

2021-10-21 Thread Floodeenjr, Thomas
Here are my notes from when we did this project a couple of years ago. It does not match your code exactly, but maybe it helps. -Tom ### ALL ### Follow the porting instructions here: https://wiki.tizen.org/Security/Tizen_5.X_Migration_from_OpenSSL_1.0.2_to_OpenSSL_1.1.1_guide Especially the se

Re: Need Help for Code Changes to Upgrade from OpenSSL 1.0.2 to 3.0

2021-10-21 Thread Matt Caswell
On 21/10/2021 09:48, Paramashivaiah, Sunil wrote: Hi All, Please let me know how I can replace the below 1.0.2 code to 3.0 *    SSL_SESSION data;* *    SSL_SESSION *ret=NULL;* ** *    data.ssl_version = sessVersion;* *    data.session_id_length= sessIdLen;* ** *    memcpy(dat

Need Help for Code Changes to Upgrade from OpenSSL 1.0.2 to 3.0

2021-10-21 Thread Paramashivaiah, Sunil
Hi All, Please let me know how I can replace the below 1.0.2 code to 3.0 SSL_SESSION data; SSL_SESSION *ret=NULL; data.ssl_version = sessVersion; data.session_id_length= sessIdLen; memcpy(data.session_id, sessId, sessIdLen); CRYPTO_r_lock(CRYPTO_LOCK_SSL_CTX);