Re: [openssl-users] Need help with creating a server certificate

2018-08-02 Thread murugesh pitchaiah
Hi, The command you used is the correct one to generate a cert from CSR. Still certificate not generated means there may be some config issue. You did not see any errors after the following line ? using configuration from > path/to/config/folder/openssl.cnf". Also check if the file/path permissi

Re: [openssl-users] openssl cms -decrypt failing due to malloc(3) failure

2018-08-02 Thread Viktor Dukhovni
On Thu, Aug 02, 2018 at 01:53:42PM +0200, Christian Böhme wrote: > > In any case, the OpenSSL apps are a convenience and a set of samples. > > My original impression was that those tools represented some kind of reference > implementation of the libraries. Clearly, I was wrong ;-) Well, OpenSSL

Re: [openssl-users] openssl-1.1.0-stable-SNAP-20180802 issue

2018-08-02 Thread Matt Caswell
K **lock; >> ^ >> crypto/asn1/tasn_utl.c:87:14: warning: implicit declaration of function >> 'CRYPTO_DOWN_REF' is invalid in C99 [-Wimplicit-function-declaration] >>if (!CRYPTO_DOWN_REF(lck, &ret, *lock)) >> ^ >> crypto/asn1/tasn_utl.

Re: [openssl-users] openssl-1.1.0-stable-SNAP-20180802 issue

2018-08-02 Thread Blumenthal, Uri - 0553 - MITLL
[-Wimplicit-function-declaration] >if (!CRYPTO_DOWN_REF(lck, &ret, *lock)) > ^ > crypto/asn1/tasn_utl.c:87:30: error: use of undeclared identifier 'lck'; did > you > mean 'lock'? > if (!CRYPTO_DOWN_REF(lck, &ret, *lock)) >

Re: [openssl-users] openssl cms -decrypt failing due to malloc(3) failure

2018-08-02 Thread Christian Böhme
Hello, On 01.08.2018 14:49, Michael Wojcik wrote: >> On 30.07.2018 20:12, Michael Wojcik wrote: >> >>> FWIW, SUS Issue 5 defines RLIMIT_AS as applying to both malloc and mmap, >>> but RLIMIT_DATA as >>> applying only to malloc. (That is, mmap'd pages do not count against the >>> data limit.) >>

[openssl-users] openssl-1.1.0-stable-SNAP-20180802 issue

2018-08-02 Thread The Doctor
cit-function-declaration] if (!CRYPTO_DOWN_REF(lck, &ret, *lock)) ^ crypto/asn1/tasn_utl.c:87:30: error: use of undeclared identifier 'lck'; did you mean 'lock'? if (!CRYPTO_DOWN_REF(lck, &ret, *lock)) ^~~ lock crypto/asn1/tasn_ut

[openssl-users] Need help with creating a server certificate

2018-08-02 Thread Neo meister
I started the process of creating a chain of certificates from the root CA down to a leaf certificate using openssl running on a debian vm. I successfully created and verified the root cert, intermediate cert and chain file. The issue I am having now is that when I go to create a leaf cert to be us

Re: [openssl-users] Help : TLS 1.3 Server is not listening on the default port

2018-08-02 Thread Chakrapani Reddy
Below command helped Thanks. *[root@vm bin]# ./openssl s_server -cert server.crt -key server1.key -4 -accept 44330 -www -tls1_3* On Wed, Aug 1, 2018 at 3:43 PM, Chakrapani Reddy wrote: > Hello, > > Wanted to try to capture the TLS1.3 message flow using openssl-1.1.1-pre7 > and used the below c