appreciated.
thanks,
Lakshmi Prasanna
__
OpenSSL Project http://www.openssl.org
User Support Mailing Listopenssl-users@openssl.org
Automated List Manager majord
efault:
goto shutdown;
}
}
shutdown:
if(SSL_get_shutdown(ssl) && SSL_RECEIVED_SHUTDOWN)
SSL_shutdown(ssl);
else
SSL_clear(ssl);
close(connfd);
// BIO_free(bio);
printf("total bytes read = %d\n", total_bytes);
printf("Closing connection\n");
SSL_free(ssl);
}
return
TE:
break;
default:
goto shutdown;
}
}
shutdown:
if(SSL_get_shutdown(ssl) && SSL_RECEIVED_SHUTDOWN)
SSL_shutdown(ssl);
else
SSL_clear(ssl);
close(connfd);
// BIO_free(bio);
printf("total bytes read = %d\n", total_bytes);
printf("Closing connection\n");
SSL_free(ssl);
}
return 0;
}
thanks & regards,
Lakshmi Prasanna
s_test.c
Description: Binary data
shake is terminated and the
Client is not sending it's certificate.
--Lakshmi Prasanna
On Mon, Jul 7, 2008 at 7:31 PM, Archana Porwal <[EMAIL PROTECTED]> wrote:
> Hello,
>
>
> I have one issue in ssl programming :
>
> when I am trying to send client certificate to serve
printf("Error accepting ssl connection\n");
close (listenSock);
SSL_CTX_free(ctx);
exit (0);
}
if (processClient(ssl_client_c
other end.
After decrypting the received message, it finds the expected Finished
message, and verifies the data sent in the Finished message.
-- Lakshmi Prasanna
On Tue, Jun 17, 2008 at 6:51 PM, Vijay Kotari <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I do know for a fact that part of the
negotiation.
I think that's the reason why, after the Record protocol Header data
(5 bytes) nothing makes sense as it is encrypted.
--Lakshmi Prasanna
On Tue, Jun 17, 2008 at 5:41 PM, Vijay Kotari <[EMAIL PROTECTED]> wrote:
> Yup, that solves it.
>
> Another matter that's
Hi,
Actually, AES is by default implemented in CBC (Cipher Block Chaining
)mode in TLSv1. Refer RFC 3268.
Since the encryption is done in CBC mode, you will not get the same
encrypted text for identical plain text.
--lakshmi prasanna
On Tue, Jun 17, 2008 at 10:58 AM, jimmy bahuleyan
<[EM
-- Forwarded message --
From: lakshmi prasanna <[EMAIL PROTECTED]>
Date: Mon, Jun 16, 2008 at 6:06 PM
Subject: Re: Difference in packet contents
To: Vijay Kotari <[EMAIL PROTECTED]>
Hi,
You can find information on this page "
http://developer.mo
icates the
Encryption algorithm and the MAC algorithm to be used.
RSA will not be used for encryption since it is very slow in
encrypting large amount of data...
-- Lakshmi Prasanna
On Mon, Jun 16, 2008 at 3:24 PM, Vijay Kotari <[EMAIL PROTECTED]> wrote:
> Hi,
>
> No, I don't think
Cipher).
That is the reason why you are observing different packet dumps for
same application data.
thanks,
Lakshmi Prasanna
On Mon, Jun 16, 2008 at 2:35 PM, Vijay Kotari <[EMAIL PROTECTED]> wrote:
> Hi,
>
> While observing some packet dump, I noticed that while sending the same
>
to create a CA and generate CA
signed certificates?
thanks,
Lakshmi Prasanna
On Fri, Jun 13, 2008 at 2:33 PM, [EMAIL PROTECTED]
<[EMAIL PROTECTED]> wrote:
>Hi,
>
> The below error is obtained when no CA is setup in the machine, ie.,
> cacert.pem and cakey.pem file are not pr
Intoto/[EMAIL PROTECTED]
err 19:self signed certificate in certificate chain
SSL_connect failed
** client.c:80 Error connecting SSL object
16384:error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate
verify failed:s3_clnt.c:843:
Any help regarding this...
--
thanks,
Lakshmi Prasanna
low error
** server.c:59 Error accepting SSL connection
16386:error:14094418:SSL routines:SSL3_READ_BYTES:tlsv1 alert unknown
ca:s3_pkt.c:1052:SSL alert number 48
Why is the certification verification failing.
Any help is appreciated..
--
thanks,
Lakshmi Prasanna
Hi all,
I have DTLS server and Client model setup.
If i want to go for multiple clients with single server, Does
Openssl-0.9.8g support it?
Please help me.
thanks in advance.
Regards
Prasanna.P.M.
Larsen & Toubro Infotech Ltd.
www.Lntinfotech.com
This Document is classified as:
L&T Infotec
Hi all,
I have DTLS server/client model. My server is blocked in SSL_read.If
server received the packet from DTLS client how can I get the Client IP
infomation from SSL_read function.How to get the senders information from
SSL_read.
thanks in advance.
Regards
Prasanna.P.M.
Larsen & Toubro
Hi all,
I am trying to setup a server client model for DTLS using OpennSSL0.9.8g.
When I tried my application with IPv4 socket, server client communication
is proper. But when i port the same application for IPv6 socket, server is
receiving the packet but it is dropping the packet.
Can somebod
the segfault.
When we used openssl 0.9.7d we never entered the for look present in
sk_pop_free funtion.
Any fix for this.
Kindly let me know if you need any further information about my setup
Regards
Prasanna
__
OpenSSL Proj
we never entered the for look present in
sk_pop_free funtion.
Any fix for this.
Kindly elt me know if you need any further information about my setup
Regards
Prasanna
__
OpenSSL Project h
Hi
The information was very usefull for reading the keys from the PEm file and
them processing,it .Can i get an excample on how that Key is created and then
stored.It seems that there is no such demo in Openssl which is showing it.
Thanx in advance
Prasanna
begin:vcard
n:S;Prasanna
x
Hi
i am very gratefull for the help.But what i also need is to do the creation
and also extraction of the keys using a C programm i.e. using the Crypto
library.I am presently using Vc++ 6.0 in Win2000
thanx and regards
prasanna
begin:vcard
n:S;Prasanna
x-mozilla-html:TRUE
adr:;;
version
Prasanna
__
OpenSSL Project http://www.openssl.org
User Support Mailing List[EMAIL PROTECTED]
Automated List Manager [EMAIL PROTECTED]
in advance.
Regards,
Prasanna.
__
OpenSSL Project http://www.openssl.org
User Support Mailing List[EMAIL PROTECTED]
Automated List Manager [EMAIL PROTECTED]
Hi,
Where does actual function definition for SHA exists in openssl lib? I
found only function declaration. I could not find function definition for
SHAInit(),SHAUpdate(),SHAFinal() in openssl lib. Whether we have to
implement them? Can anybody help me?
Thanks in advance.
Prasanna
Hi,
I want clarification about the Licence issues in using openssl product.
Apart from retaining copyright, is there any other major issues or problems
in using openssl product.
Thanks.
Prasanna
__
OpenSSL Project
25 matches
Mail list logo