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
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
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.
[-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))
>
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.)
>>
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
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
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