[openssl-dev] [openssl.org #4513] [PATCH]

2016-04-20 Thread Richard Levitte via RT
Your fix has been merged into master. Thank you! Vid Mon, 18 apr 2016 kl. 13.05.26, skrev davide.gala...@gmail.com: > Hello, > > Given that BIO_connect never returns a value less than 0 > > crypto/bio/b_sock2.c > > * Returns 1 on success or 0 on failure. On failure errno is set > * and an error

Re: [openssl-dev] Consistent way of making a const bignum

2016-04-20 Thread Brian Smith
Feel free to take the patch at https://boringssl.googlesource.com/boringssl/+/7af36e1e38f54051559e2a40e6461a0c3b23b3fc%5E%21/#F0 if it helps you. In particular, crypto/ec (ecp_nistz256, at least) also needs this, and in fact this is already defined there. Cheers, Brian On Wed, Apr 20, 2016 at

[openssl-dev] [openssl.org #4515] [Patch] Cannot build due to IDEA functions partially renamed

2016-04-20 Thread Rich Salz via RT
pushed as commit 098a238 Thanks! -- Ticket here: http://rt.openssl.org/Ticket/Display.html?id=4515 Please log in as guest with password guest if prompted -- openssl-dev mailing list To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-dev

[openssl-dev] Consistent way of making a const bignum

2016-04-20 Thread 黄勤瑾
I'd submitted a pull request to openssl, changing the use of BN_bin2bin() to static const bignums in bn_const.c . I defined macro bn_pack2 : #if BN_BITS2 == 64 #define bn_pack2(a1,a2) ((0x##a1##ULL<<32)|0x##a2##ULL) #elif BN_BITS2 == 32 #define bn_pack2(a1,a2) 0x##a2##UL, 0x##a1##UL #else

Re: [openssl-dev] Windows Patch affecting connectivity to our applications

2016-04-20 Thread Matt Caswell
On 20/04/16 15:03, Thirumal, Karthikeyan wrote: > Thanks Rich. > > We first attempted to move to openssl-0.9.8zc - but we faced memory issues > and our process got dumped at SSL_free. So we backed out and moved back to > 9.8a. > > Can I go to 0.9.8e version and will the SSL fragment issue be

Re: [openssl-dev] Windows Patch affecting connectivity to our applications

2016-04-20 Thread Salz, Rich
> Can I go to 0.9.8e version and will the SSL fragment issue be fixed there ? To repeat myself: upgrade. -- openssl-dev mailing list To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-dev

Re: [openssl-dev] Windows Patch affecting connectivity to our applications

2016-04-20 Thread Thirumal, Karthikeyan
Thanks Rich. We first attempted to move to openssl-0.9.8zc - but we faced memory issues and our process got dumped at SSL_free. So we backed out and moved back to 9.8a. Can I go to 0.9.8e version and will the SSL fragment issue be fixed there ? Thanks & Regards

Re: [openssl-dev] Broken links in pod file of OpenSSL 1.1.0pre5

2016-04-20 Thread Matt Caswell
On 19/04/16 20:18, Rainer Jung wrote: > Output during "make install": > > Cannot find "BIO_gets" in podpath: cannot find suitable replacement > path, cannot resolve link > Cannot find "BIO_callback_ctrl" in podpath: cannot find suitable > replacement path, cannot resolve link > Cannot find

[openssl-dev] [openssl.org #4515] [Patch] Cannot build due to IDEA functions partially renamed

2016-04-20 Thread Michel via RT
Hi, I was not able to build today's git repo. May not be what you would like to do, but the attached patch should fix that. Regards, Michel Microsoft (R) Windows (R) Resource Compiler Version 6.3.9600.17336 Copyright (C) Microsoft Corporation. All rights reserved. link /nologo /debug

Re: [openssl-dev] Core dump OpenSSL 1.1.0-pre5 during test (likely in 70-test_sslskewith0p.t)

2016-04-20 Thread Matt Caswell
On 19/04/16 19:40, Rainer Jung wrote: > I get a core dump during test execution for 1.1.0-pre5. Test is > test/recipes/70-test_sslskewith0p.t, platform is Solaris 10 Sparc. Thanks for the detailed analysis. Based on that I have been able to identify the problem. Fix on the way. Matt --