Re: [openssl-users] a problem connecting to a specific Site ...

2018-11-05 Thread Jakob Bohm via openssl-users
On 03/11/2018 08:56, Walter H. wrote: Hello, it is a little bitte weird/strange/complicated; On 02.11.2018 23:05, Matt Caswell wrote: On 02/11/2018 21:51, Walter H. wrote: Hello, when I try to connect tohttps://www.3bg.at/ I get the following error Handshake with SSL server failed: error:14

Re: [openssl-users] a problem connecting to a specific Site ...

2018-11-03 Thread Walter H.
Hello, it is a little bitte weird/strange/complicated; On 02.11.2018 23:05, Matt Caswell wrote: On 02/11/2018 21:51, Walter H. wrote: Hello, when I try to connect to https://www.3bg.at/ I get the following error Handshake with SSL server failed: error:1408E0F4:SSL routines:SSL3_GET_MESSAGE:

Re: [openssl-users] a problem connecting to a specific Site ...

2018-11-02 Thread Matt Caswell
On 02/11/2018 21:51, Walter H. wrote: > Hello, > > when I try to connect to https://www.3bg.at/ > I get the following error > > Handshake with SSL server failed: error:1408E0F4:SSL > routines:SSL3_GET_MESSAGE:unexpected message > > but > https://www.ssllabs.com/ssltest/analyze.html?d=www.3bg.

[openssl-users] a problem connecting to a specific Site ...

2018-11-02 Thread Walter H.
Hello, when I try to connect to https://www.3bg.at/ I get the following error Handshake with SSL server failed: error:1408E0F4:SSL routines:SSL3_GET_MESSAGE:unexpected message but https://www.ssllabs.com/ssltest/analyze.html?d=www.3bg.at says its ok ... is the problem on my side or on their s

Re: problem connecting to ssl server

2009-05-14 Thread Folkert van Heusden
> > I have an ssl server. Really simple; > > > > // init > > SSL_library_init(); > > SSL_load_error_strings(); > > bio_err = BIO_new_fp(stderr, BIO_NOCLOSE); > > meth = SSLv23_server_method(); > > ctx = SSL_CTX_new(meth); > > SSL_CTX_use_certific

Re: problem connecting to ssl server

2009-05-14 Thread Dr. Stephen Henson
On Wed, May 13, 2009, Folkert van Heusden wrote: > Hi, > > I have an ssl server. Really simple; > > // init > SSL_library_init(); > SSL_load_error_strings(); > bio_err = BIO_new_fp(stderr, BIO_NOCLOSE); > meth = SSLv23_server_method(); > ctx = SSL_CT

Re: problem connecting to ssl server MORE INFORMATION, EVEN MORE

2009-05-14 Thread Kyle Hamilton
SSL_CTX_set_cipher_list(ctx, "STRONG:HIGH:FIPS:@STRENGTH"); -Kyle H On Thu, May 14, 2009 at 5:46 AM, Folkert van Heusden wrote: > Ok I added debugging code and it gives me this; > > 27559:error:1408A0C1:SSL routines:SSL3_GET_CLIENT_HELLO:no shared > cipher:s3_srvr.c:1006: > > What does that mea

Re: problem connecting to ssl server MORE INFORMATION, EVEN MORE

2009-05-14 Thread Folkert van Heusden
Ok I added debugging code and it gives me this; 27559:error:1408A0C1:SSL routines:SSL3_GET_CLIENT_HELLO:no shared cipher:s3_srvr.c:1006: What does that mean from a configuration point of view? I have the default openssl package installed and also the cacert.org.pem-file in the correct place. O

Re: problem connecting to ssl server MORE INFORMATION

2009-05-14 Thread Folkert van Heusden
ssldump gives me the following information: belle:/home/folkert# ssldump -a -A -H -k Personal/src/https2http/key.pem -i lo New TCP connection #1: localhost(33455) <-> localhost(996) 1 1 0.0001 (0.0001) C>S SSLv2 compatible client hello Version 3.1 cipher suites Unknown value 0x39 Unknown

problem connecting to ssl server

2009-05-13 Thread Folkert van Heusden
Hi, I have an ssl server. Really simple; // init SSL_library_init(); SSL_load_error_strings(); bio_err = BIO_new_fp(stderr, BIO_NOCLOSE); meth = SSLv23_server_method(); ctx = SSL_CTX_new(meth); SSL_CTX_use_certificate_chain_file(ctx, "/home

Re: Problem connecting using SSL_connect

2006-04-06 Thread Marek Marcola
Hello, > Is there any way to see --exactly-- what's going on? To log exactly > what's going on during the connection/handshake procedure? Try to add connection callback function, for example: static void tls_connection_info_cb(const SSL * ssl, int type, int val) { if (type & SSL_CB_LOOP) {

RE: Problem connecting using SSL_connect

2006-04-05 Thread Gayathri Sundar
used.. Am dead sure its just a minor handshake issue coz of misconfiguration.. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Robert Stober Sent: Thursday, April 06, 2006 7:47 AM To: openssl-users@openssl.org Subject: Problem connecting using SSL_connect

Problem connecting using SSL_connect

2006-04-05 Thread Robert Stober
Hi, My application is very simple, a client that connects to a server and they verify each other's identity. Right now I'm just trying to get them to connect. I'm using OpenSSL 0.9.7. I started with the example application in the O'Reilly "Network Security with OpenSSL" book. I was able to integra

Re: Problem connecting to 993 port ??

2001-03-21 Thread Darrin Powell
On Wed, 21 Mar 2001, you wrote: OK when I select the sever.pem cert to use I get this output openssl s_server -cert /usr/local/src/openssl-0.9.6/crypto/pkcs7/server.pem Using default temp DH parameters ACCEPT I take it that ACCEPT is a good thing now why does it give me this error when I try

Re: Problem connecting to 993 port ??

2001-03-21 Thread Lutz Jaenicke
On Wed, Mar 21, 2001 at 01:10:39PM -0500, Darrin Powell wrote: > On Wed, 21 Mar 2001, you wrote: > Also I get these errors when I try to open a port. Maybe this has some > sig. I am lost :) > > [root@powell log]# openssl s_server -accept 993 > Using default temp DH parameters > unable to

Re: Problem connecting to 993 port ??

2001-03-21 Thread Lutz Jaenicke
On Wed, Mar 21, 2001 at 12:51:52PM -0500, Darrin Powell wrote: > On Wed, 21 Mar 2001, you wrote: >This is the error that is generated in /var/log/messages. > > Mar 21 12:47:47 powell stunnel[5713]: /usr/share/ssl/certs/stunnel.pem: No such file >or directory (2) > > > Should

Re: Problem connecting to 993 port ??

2001-03-21 Thread Darrin Powell
On Wed, 21 Mar 2001, you wrote: Also I get these errors when I try to open a port. Maybe this has some sig. I am lost :) [root@powell log]# openssl s_server -accept 993 Using default temp DH parameters unable to get certificate from 'server.pem' 5902:error:02001002:system library:fop

Re: Problem connecting to 993 port ??

2001-03-21 Thread Darrin Powell
On Wed, 21 Mar 2001, you wrote: This is the error that is generated in /var/log/messages. Mar 21 12:47:47 powell stunnel[5713]: /usr/share/ssl/certs/stunnel.pem: No such file or directory (2) Should it be looking for "/usr/share/ssl/certs/stunnel.pem" ??? Thanks again

Re: Problem connecting to 993 port ??

2001-03-21 Thread Lutz Jaenicke
On Wed, Mar 21, 2001 at 09:40:12AM -0800, John Denney wrote: > On my sun machine, /usr/include/errno.h included > /usr/include/sys/errno.h which has: > > #define EPIPE 32 /* Broken pipe */ > > But I don't have a clue why your pipe would be broken. EPIPE occurs when the server sid

Re: Problem connecting to 993 port ??

2001-03-21 Thread John Denney
On my sun machine, /usr/include/errno.h included /usr/include/sys/errno.h which has: #define EPIPE 32 /* Broken pipe */ But I don't have a clue why your pipe would be broken. Darrin Powell wrote: > > I am setting up IMAP to use SSL. I recieve this error when I try to connect t

Problem connecting to 993 port ??

2001-03-21 Thread Darrin Powell
I am setting up IMAP to use SSL. I recieve this error when I try to connect to port 993. Does anyone know what my problem could be? [root@powell rsaref-2.0]# openssl s_client -host mail.uiop.net -port 993 CONNECTED(0003) write:errno=32 Thanks in advance Darrin ___

Re: Problem connecting to several sites in SSL.

2000-07-10 Thread Matan Alpha
Thank's a lot it really works Matan >From: [EMAIL PROTECTED] (Bodo Moeller) >To: [EMAIL PROTECTED], "Matan Alpha" <[EMAIL PROTECTED]> >Subject: Re: Problem connecting to several sites in SSL. >Date: Mon, 10 Jul 2000 23:22:35 +0200 (CEST) > >Matan Alpha &

Problem Connecting

1999-12-06 Thread vdodballapur
Veena Dodballapur@SENTOR 07/12/99 15:47 To: [EMAIL PROTECTED] cc: Subject: Problem Connecting I installed linux on my machine and was able to create CA authority and issue Certificates to myself. After doing this I configured the httpd to point to the certificate I created and then