Re: [openssl-users] OpenSSL Dragino Yun Issues

2016-08-31 Thread Matt Caswell
On 31/08/16 23:16, Nikola Milev wrote: > In other words the function that is failing is doing this: > > socket(AF_INET, SOCK_STREAM, IPPROTO_TCP) It would be interesting to know whether a minimalist program that just does the above successfully creates a socket or not. If it does succeed then

[openssl-users] OpenSSL Dragino Yun Issues

2016-08-31 Thread Nikola Milev
To whom it may concern, I have been experiencing issues with OpenSSL and DraginoYun. If you are not the person I should have contacted, please redirect me. Thank you! Recently, I have tried using OpenSSL to establish a simple server application on Dragino Yun version 2.4. First, I tested the

[openssl-users] fips_premain.c bitcode for iOS

2016-08-31 Thread Brian Jost
We ran into an issue where we were selecting 'Include bitcode' when submitting to apple and when doing ad-hoc builds. It seems doing this with the fips_premain.c file included in the xcode compile sources phase causes an instant crash on start up. What is the proper way to get past this bitcode

[openssl-users] Working with s_time and nginx

2016-08-31 Thread Kjetil Birkeland Moe
Dear all, I have turned to /s_time/ to evaluate the performance of a local Nginx server setup, but seems to immediately run into problems that do not appear when using /s_client/. Server setup is largely based on recommendations from bettercrypto.org, which also demonstrate the same problems

Re: [openssl-users] RSA sign using SHA256 with mgf1 padding

2016-08-31 Thread Mounir IDRASSI
Hi, I have written a sample few years ago that performs PSS signature using SHA256 like what you need. You can get it from https://www.idrix.fr/Root/Samples/openssl_pss_signature.c It uses the maximum salt length. You should check that the server expects this as well. Cheers, -- Mounir IDRASSI

Re: [openssl-users] Sequential / parallel OpenSSL sessions with Async

2016-08-31 Thread Matt Caswell
On 31/08/16 13:17, Nicolas Brunie wrote: > Hi All,I have been playing around with OpenSSL ASYNC JOB and an > asynchronous offloading engine and a stupid question came to mind: > It is not possible to make several parallel/pending calls to SSL_read > (or SSL_write) on a single SSL* object

[openssl-users] Sequential / parallel OpenSSL sessions with Async

2016-08-31 Thread Nicolas Brunie
Hi All,I have been playing around with OpenSSL ASYNC JOB and an asynchronous offloading engine and a stupid question came to mind: It is not possible to make several parallel/pending calls to SSL_read (or SSL_write) on a single SSL* object (with different output/input buffers) so that