Re: [Openvpn-devel] [PATCH 3/7] OpenSSL: don't use direct access to the internal of RSA

2017-06-11 Thread Steffan Karger
Hi, Patch looks good in general, but some minor remarks: On 19-05-17 12:38, Emmanuel Deloget wrote: > OpenSSL 1.1 does not allow us to directly access the internal of > any data type, including RSA. We have to use the defined > functions to do so. > > Compatibility with OpenSSL 1.0 is kept by

[Openvpn-devel] [PATCH 3/7] OpenSSL: don't use direct access to the internal of RSA

2017-05-19 Thread Emmanuel Deloget
OpenSSL 1.1 does not allow us to directly access the internal of any data type, including RSA. We have to use the defined functions to do so. Compatibility with OpenSSL 1.0 is kept by defining the corresponding functions when they are not found in the library. Signed-off-by: Emmanuel Deloget