Re: Error in OpenSSL1.1.1b during including in Project

2019-03-31 Thread Prajwal Pachi
Hi All, I am trying to build a cross platform library with help of Openssll LibCrypto and libSSL library. When i generate the lib and include the files and lib in cross platform library project I am getting below error. error : member access into incomplete type 'ssl_ctx_st' 1> *

SSL_SESSION_set1_ticket ?

2019-03-31 Thread Jeremy Harris
Why is there not an SSL_SESSION_set1_ticket() ? Having to store an entire ASN.1-coded session in a DB, at some 1250 byte versus 160 for the ticket is suboptimal. This is for client-side TLS1.2 resumption, when the clients are separate processes and time-separated. You can get ticket blobs via

Re: SSL_SESSION_set1_ticket ?

2019-03-31 Thread Viktor Dukhovni
A resumed session holds not just the ticket, but also the server certificate, so that one examine the certificate and its saved verification status, ... And of course you need not just the ticket, but also the master key (in the session object). > On Mar 31, 2019, at 3:56 PM, Jeremy Harris

RE: The smallest minimal example of an HTTPS GET request with openssl

2019-03-31 Thread Porter, Andrew
You would have to ignore some initial certificate info output but some variation on echo "GET /version" | openssl s_client -connect test.example.com -crlf -ign_eof -quiet would be as pure OpenSSL as you can get… Andrew From: openssl-users [mailto:openssl-users-boun...@openssl.org] On Behalf