Re: SSL_get_finished determine length

2020-02-17 Thread Samuel Williams
So what is the valid way to do it? Invoke it with a 1 byte array? Maybe an example should be added to the manual page? On Thu, 6 Feb 2020 at 23:18, Marian Beermann wrote: > > Is it valid to call: > > > > size_t size = SSL_get_finished(ssl, NULL, 0); > > No > > > Because SSL_get_finished invokes

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

SSL_get_finished determine length

2020-02-06 Thread Samuel Williams
Is it valid to call: size_t size = SSL_get_finished(ssl, NULL, 0); So we can determine the length? Because SSL_get_finished invokes memcpy even if the size is 0, so is the undefined behaviour? Thanks.