[openssl-dev] [openssl.org #3899] PATCH: Update to EVP_BytesToKey.pod documentation

2015-06-06 Thread noloa...@gmail.com via RT
Another small issue revealed on Stack Overflow: Utilizing PBKDF2 with OpenSSL library, http://stackoverflow.com/q/22795471. In the question the OP cited the man page for EVP_BytesToKey. He knew he needed to use PBKDF2 from the man page, but the man page did not explicit call out OpenSSL's

Re: [openssl-dev] ssl_sess.c : compilation error

2015-06-06 Thread Kurt Roeckx
On Sun, Jun 07, 2015 at 12:17:06AM +0300, Zvi Vered wrote: Dear Members, In the file openssl-1.0.1g\ssl\ssl_sess.c contains the following code: int (*SSL_CTX_sess_get_new_cb(SSL_CTX *ctx))(SSL *ssl, SSL_SESSION *sess) { return ctx-new_session_cb; } The return value of this

[openssl-dev] ssl_sess.c : compilation error

2015-06-06 Thread Zvi Vered
Dear Members, In the file openssl-1.0.1g\ssl\ssl_sess.c contains the following code: int (*SSL_CTX_sess_get_new_cb(SSL_CTX *ctx))(SSL *ssl, SSL_SESSION *sess) { return ctx-new_session_cb; } The return value of this routine is a “pointer to function”. But the code :