Re: [openssl-users] openssl 1.1.1 opaque structures

2018-11-24 Thread Richard Levitte
(that was Rich responding, not Matt ;-)) There are penty of functions to assign values properly to BIGNUMs without having to resort to accessing the structure members. If you still have reasons to do so, that sounds like you want to modify the API somehow, and since you do have access to the

Re: [openssl-users] openssl 1.1.1 opaque structures

2018-11-24 Thread priya p
Hi Matt, I want to get/set BIGNUM structure members using API like DH getter/setter ? Thanks, Priya On Sun, Nov 25, 2018, 9:32 AM Salz, Rich via openssl-users < openssl-users@openssl.org wrote: > >- BIGNUM structure also has been made opaque. How to refer the members >of BIGNUM

Re: [openssl-users] openssl 1.1.1 opaque structures

2018-11-24 Thread Salz, Rich via openssl-users
* BIGNUM structure also has been made opaque. How to refer the members of BIGNUM structure like bn->top ? You cannot. That is the definition of “opaque structure.” :) Why do you need to access “top” ? * And I don't see this API implementation ""lh_OPENSSL_CSTRING_new" in

Re: [openssl-users] openssl 1.1.1 opaque structures

2018-11-24 Thread priya p
Thanks Matt and Richard. BIGNUM structure also has been made opaque. How to refer the members of BIGNUM structure like bn->top ? And I don't see this API implementation ""lh_OPENSSL_CSTRING_new" in openssl-1.1.1 ? Is it removed ? Thanks, Priya On Fri, 23 Nov 2018 at 16:59, Richard Levitte