Re: SSL_get_finished determine length

2020-02-06 Thread Marian Beermann
> Is it valid to call: > > size_t size = SSL_get_finished(ssl, NULL, 0); No > Because SSL_get_finished invokes memcpy even if the size is 0, so is the > undefined behaviour? Yes

Re: writev over OpenSSL

2020-02-02 Thread Marian Beermann
> Creating a temporary buffer and then consolidating the > vector is a problem because of the performance cost associated with > memory copy. Did you actually benchmark this or do you just think this is the case? Consider that SSL_write/read will normally do something like AES or Chapoly on your

Re: Help

2019-05-22 Thread Marian Beermann
SLES 10 is 13 years old and stopped receiving (security) updates three years ago. The best course of action here is to upgrade the operating system. -Marian Am 22.05.19 um 11:16 schrieb pcraghavendra.pra...@dell.com: > Hi Team, > >   > > Need help on the openssl library. > > We want to

Re: aes-cbc-256 mode descryption without an IV

2019-03-25 Thread Marian Beermann
sToKey algorithm but thank you for providing > that page.  i suspect it might be easier to have the folks encrypting > the data specifiy an IV rather than trying to figure out how to > implement  EVP_BytesToKey in python.  its not inconsequential. > > On Mon, Mar 25, 2019 at 5:

Re: aes-cbc-256 mode descryption without an IV

2019-03-25 Thread Marian Beermann
Well let's just read the man pages, shall we? >-kfile filename > Read the password to derive the key from the first line of filename. Then >-md digest > Use the specified digest to create the key from the passphrase. > The default algorithm is sha-256. And > -iv IV > ...

Re: CVE-2019-1559 advisory - what is "non-stiched" ciphersuite means?

2019-02-27 Thread Marian Beermann
"Stitching" is an optimization where you have algorithm A (e.g. AES-CBC) and algorithm B (e.g. HMAC-SHA2) working on the same data, and you interleave the instructions of A and B. (This can improve performance by increasing port and EU utilization relative to running A and B sequentially). I

Re: [openssl-users] PEM_write_bio_RSAPrivateKey assure Randomness of PK

2018-05-23 Thread Marian Beermann
On 23.05.2018 20:39, Michael Wojcik wrote: From: openssl-users [mailto:openssl-users-boun...@openssl.org] On Behalf Of redpath Sent: Wednesday, May 23, 2018 13:08 To: openssl-users@openssl.org Subject: Re: [openssl-users] PEM_write_bio_RSAPrivateKey assure Randomness of PK SO if I add this RAND