Re: [openssl-users] has anyone developed a standalone test for CVE-2014-8730?

2015-03-01 Thread Brian Reichert
On Sat, Feb 28, 2015 at 10:16:58PM +, Salz, Rich wrote: I've found one on-line tester for CVE-2014-8730 here: You sure that's the one you want? That is only for F5. See https://support.f5.com/kb/en-us/solutions/public/15000/800/sol15882.html I don't think it's only for F5:

[openssl-users] SSL_CTX_check_private_key:no certificate assigned

2015-03-01 Thread dE
Hi! I'm trying to create a certificate using openssl library. Here is the code -- void main () { SSL_library_init(); SSL_load_error_strings(); OpenSSL_add_all_algorithms(); char err[1000]; RSA* keypair = RSA_new(); BIGNUM *e = BN_new(); X509 *certificate =

Re: [openssl-users] SSL_CTX_check_private_key:no certificate assigned

2015-03-01 Thread Dr. Stephen Henson
On Sun, Mar 01, 2015, dE wrote: Hi! I'm trying to create a certificate using openssl library. Here is the code -- void main () { SSL_library_init(); SSL_load_error_strings(); OpenSSL_add_all_algorithms(); char err[1000]; RSA* keypair = RSA_new(); BIGNUM *e =

Re: [openssl-users] SSL_CTX_check_private_key:no certificate assigned

2015-03-01 Thread dE
On 03/01/15 19:43, Dr. Stephen Henson wrote: On Sun, Mar 01, 2015, dE wrote: Hi! I'm trying to create a certificate using openssl library. Here is the code -- void main () { SSL_library_init(); SSL_load_error_strings(); OpenSSL_add_all_algorithms(); char err[1000];