Re: [openssl-users] OpenSSL version 1.1.1 pre release 9 published

2018-08-22 Thread Matt Caswell
On 22/08/18 00:53, Robert Moskowitz wrote: > > > On 08/21/2018 06:31 PM, Matt Caswell wrote: >> >> On 21/08/18 16:24, Robert Moskowitz wrote: >>> Thanks! >>> >>> Once Fedora beta picks this up, I will run my scripts against it and see >>> if all cases of hash with ED25519 are fixed. >> Unfortun

[openssl-users] error: void value not ingored as it to be crypto/err/err_all.c

2018-08-22 Thread Mark via openssl-users
I'm trying to build OpenSSL with FIPS module in a centos docker container. The FIPS module builds fine but the openssl build fails with: _USE_NODELETE -MMD -MF crypto/err/err_all.d.tmp -MT crypto/err/err_all.o -c -o crypto/err/err_all.o crypto/err/err_all.c crypto/err/err_all.c: In function 'er

[openssl-users] How to Implement a new PubKey method correctly

2018-08-22 Thread Dr. Pala
Hi all, I am working on providing a new Public Key method that will handle Composite Keys (i.e., multiple keys with different algos - e.g., one RSA and one EC) and Composite Signatures  (i.e., multiple signatures generated with the corresponding Composite Keys). In particular, I would like to be a

Re: [openssl-users] error: void value not ingored as it to be crypto/err/err_all.c

2018-08-22 Thread Dr. Matthias St. Pierre
Hi Mark, I guess your problem is that you are trying to build OpenSSL 1.1.0 with FIPS. Only OpenSSL 1.0.2 has FIPS support. Regards, Matthias Von: openssl-users Im Auftrag von Mark via openssl-users Gesendet: Mittwoch, 22. August 2018 18:38 An: openssl-users@openssl.org Betreff: [openssl-us

Re: [openssl-users] using NULL ciphers

2018-08-22 Thread Qi Zeng
Hello, I'm trying to use NULL cipher such as ECDHE-ECDSA-NULL-SHA for debugging purpose. With OpenSSL version 1.0.2p, I was able to make it work. However with version 1.1.0i or 1.1.1 prev 9, SSL_CTX_set_cipher_list(ctx, "ECDHE-ECDSA-NULL-SHA") succeeded but SSL_Connect () failed. Is there any w

Re: [openssl-users] using NULL ciphers

2018-08-22 Thread Viktor Dukhovni
> On Aug 22, 2018, at 1:56 PM, Qi Zeng wrote: > > I’m trying to use NULL cipher such as ECDHE-ECDSA-NULL-SHA for debugging > purpose. With OpenSSL version 1.0.2p, I was able to make it work. However > with version 1.1.0i or 1.1.1 prev 9, SSL_CTX_set_cipher_list(ctx, > "ECDHE-ECDSA-NULL-SHA"

Re: [openssl-users] using NULL ciphers

2018-08-22 Thread Kurt Roeckx
On Wed, Aug 22, 2018 at 02:08:42PM -0400, Viktor Dukhovni wrote: > > > > On Aug 22, 2018, at 1:56 PM, Qi Zeng wrote: > > > > I’m trying to use NULL cipher such as ECDHE-ECDSA-NULL-SHA for debugging > > purpose. With OpenSSL version 1.0.2p, I was able to make it work. However > > with version

Re: [openssl-users] How to Implement a new PubKey method correctly

2018-08-22 Thread Richard Levitte
In message on Wed, 22 Aug 2018 08:55:02 -0600, "Dr. Pala" said: director> Hi all, director> director> I am working on providing a new Public Key method that will handle director> Composite Keys (i.e., multiple keys with different algos - e.g., one RSA director> and one EC) and Composite Signa

Re: [openssl-users] using NULL ciphers

2018-08-22 Thread Qi Zeng
Viktor and Kurt, Thanks for the help! Now it's working. Qi -Original Message- From: openssl-users [mailto:openssl-users-boun...@openssl.org] On Behalf Of Kurt Roeckx Sent: Wednesday, August 22, 2018 2:12 PM To: openssl-users@openssl.org Subject: Re: [openssl-users] using NULL ciphers O

Re: [openssl-users] OpenSSL version 1.1.1 pre release 9 published

2018-08-22 Thread Robert Moskowitz
On 08/22/2018 11:48 AM, Matt Caswell wrote: On 22/08/18 00:53, Robert Moskowitz wrote: On 08/21/2018 06:31 PM, Matt Caswell wrote: On 21/08/18 16:24, Robert Moskowitz wrote: Thanks! Once Fedora beta picks this up, I will run my scripts against it and see if all cases of hash with ED25519