openssl 1.1.1k on solaris 2.6 sparc

2021-06-24 Thread david raingeard
Hello, I compiled it using sun compiler, with some modifications to the source code. However :) openssl s_client -connect google.com:443 -tls1_2 works fine ! But openssl s_client -connect google.com:443 -tls1_3 fails on CRYPTO_memcmp. For easy debugging, I have made a copy of CRYPTO_memc

RE: openssl 1.1.1k on solaris 2.6 sparc

2021-06-24 Thread Michael Wojcik
> From: openssl-users On Behalf Of david > raingeard > Sent: Thursday, 24 June, 2021 07:06 > I compiled it using sun compiler, with some modifications to the source code. If memory serves, OpenSSL doesn't work on Solaris SPARC if built using the Sun compiler. You have to use GCC. I'm pretty su

Re: openssl 1.1.1k on solaris 2.6 sparc

2021-06-24 Thread Jeff Wieland
Michael Wojcik wrote: From: openssl-users On Behalf Of david raingeard Sent: Thursday, 24 June, 2021 07:06 I compiled it using sun compiler, with some modifications to the source code. If memory serves, OpenSSL doesn't work on Solaris SPARC if built using the Sun compiler. You have to use GCC

openssl 1.1.1 debugging

2021-06-24 Thread david raingeard
hello is it possible to have some kind of debug server which will always use the same data, so i can debug the code ? i mean i have openssl working with tls 1.3 and ssl3 on unbuntu, which i could compare the logs with the ones on the sparc, so i can find out where it goes wrong ? thank you