Re: [openssl-users] About 1.0.2p version release !!

2018-08-09 Thread Juan Isoza
> On 08/08/18 21:15, The Doctor wrote: > > On Wed, Aug 08, 2018 at 01:46:54PM +0100, Matt Caswell wrote: > > >>>> On 08/08/18 04:31, Juan Isoza wrote: > >>>>> and final 1.1.1 > >>>> > >>>> There is no date yet. We are s

Re: [openssl-users] About 1.0.2p version release !!

2018-08-07 Thread Juan Isoza
and final 1.1.1 1.0.2p is for 14 august Le lun. 6 août 2018 à 15:00, Hareesh D a écrit : > Hi, > > Anyone know when is the official release of 1.0.2p version? Is it possible > to get such info about openssl version plan ? > > Thanks !! > -- > openssl-users mailing list > To unsubscribe:

[openssl-users] openssl 1.1.1 release

2018-08-27 Thread Juan Isoza
Openssl 1.1.1 pre 9 is now compatible with final RFC tls 1.3 but I see several recent commit , so I suppose we'll see a pre 10 before final openssl 1.1.1 Any idea for the possible date of publication of 1.1.1 final (if there is no major bug/problem) ? regards juan -- openssl-users mailing

Re: [openssl-users] [openssl-project] Late thoughts on the 1.1.1 release - are we fooling ourselves?

2018-08-18 Thread Juan Isoza
What is the difference between draft 28 and rfc for tls 1.3 ? -- openssl-users mailing list To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users

[openssl-users] Using Windows system certficate store for server authentication

2018-09-08 Thread Juan Isoza
It's a good idea using openssl under windows (with new openssl 1.1.1, we will be able to use TLS 1.3 under Windows, from 7/2008 to 10/2016) instead internal windows crypto.. But, by example, curl build for windows with openssl need a --insecure parameters or a custom root certificate file. What

[openssl-users] Migrating to openssl 1.1.1 in real life linux server

2018-09-11 Thread Juan Isoza
Hello, What is the better way, for anyone running, by example, Apache or nginx on a popular Linux districution (Ubuntu, Debian, Suse) and want support TLS 1.3 ? Waiting package update to have openssl 1.1.1 ? probably a lot of time Recompile openssl dynamic library and replace system library ?

[openssl-users] Open SSL 1.1.1 release

2018-06-22 Thread Juan Isoza
Hello, I'll soon release a software which contain openssl (static linked). I must choose between using 1.1.0, 1.1.1 pre 8, or wait some week .I think TLS 1.3 support is great. Can we suppose 1.1.1 final will be released soon ? regards -- openssl-users mailing list To unsubscribe:

[openssl-users] Chrome 70 with final tls 1.3 is out

2018-10-16 Thread Juan Isoza
Chrome 70 with final tls 1.3 install itself with automatic update. So there will be a lot of tls 1.3 client ! And Firefox will update next week -- openssl-users mailing list To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users

Re: [openssl-users] s_server -www -tls1_3: Firefox/Chrome not working

2018-10-23 Thread Juan Isoza
I suppose Facebook reports 50% because their mobile apps uses their SSL library Fizz with Tls 1.3 https://thehackernews.com/2018/08/fizz-tls-ssl-library.html I'm curious seeing your telemetry info now. Chrome 70 was released last week, and FireFox 63 today, with TLS 1.3 support regards Le mer.

Re: [openssl-users] openssl 1.1.1 release

2018-09-04 Thread Juan Isoza
Hello, Have you more info ? regards Le lun. 27 août 2018 à 15:12, Matt Caswell a écrit : > > > > We are hoping that pre 9 will be the last beta and the next release will > be the final one. > > > We have tentatively discussed 11th September as a possible release date > - but no definitive

Re: [openssl-users] s_server -www -tls1_3: Firefox/Chrome not working

2018-09-12 Thread Juan Isoza
As I understand and check: https://www.tls13.net accept connexion from final openssl-1.1.1 (RFC8446) but not from openssl-1.1.1 pre8 (draft 28) https://tls13.crypto.mozilla.org accept connexion from openssl-1.1.1 pre8 (draft 28) but not from final openssl-1.1.1 (RFC8446)

creating Linux "portable" x64 binary

2019-02-22 Thread Juan Isoza
Hello, I want create for one of my application a Linux binary which run on all current linux system running x86_64 processor. by example, I uses -static-libgcc -static-libstdc++ when I link my app , because I'm not sure found recent version of this lib I also use -lrt to prevent search some tims

Tutorial for OpenSSL3 deprecated API replacement

2021-05-01 Thread Juan Isoza
Hello, I've code based on sample from https://www.programmersought.com/article/37955188510/ It uses RSA function (like RSA_generate_key_ex , RSA_public_decrypt ...) Where can I find a "porting guideline" which help me finding alternative, for each API RSAxx API ? A lot of programmer will need