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
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:
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.
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
> > 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
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
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
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
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
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
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) {
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
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
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
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
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
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
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
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
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
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
___
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 &
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
23 matches
Mail list logo