Does OpenSsl support TLS 1.1

2007-02-04 Thread Prashant Kumar
Hello All, Does OpenSsl support TLS 1.1. Looking at the REAME for OpenSsl version 9.8d, it doesn't look like. Reading RFC 4346 (TLS1.1) it looks like there are no significant changes. Any idea? Thank you for your help. Regards, Prashant. --

Kerberos support

2006-03-09 Thread Prashant Kumar
Hello All,   Does OpenSsl has support for Kerberos Ciphers? Is ther any documentation or example how to use the Kerberos ciphers ?   Thank you for your help.   Regards, Prashant. Yahoo! Mail Bring photos to life! New PhotoMail makes sharing a breeze.

Re: errors in DTLS implementation in openssl0.9.8a

2005-12-13 Thread Prashant Kumar
16 01 00 for a DTLS handshake is the right code   16, Content type, and it is a handshake   DTLS version is 01 00   Thanks, Prashant.Eduardo Pérez Ureta <[EMAIL PROTECTED]> wrote: Maybe you can try:http://www.aet.tu-cottbus.de/rt2/Ticket/Display.html?id=1245http://bugs.debian.org/cgi-bin/bu

RE: SSL per session memory usage

2005-09-26 Thread Prashant Kumar
that   fixed, I changed this definition so that it doesn't add the 1024 bytes if compression is   disabled.  So there's another 2048 bytes/connection.These changes are less important given your strategy.  But I plan to implement both so that Idon't have to port to MatrixSSL. Thanks ag

Re: SSL per session memory usage

2005-09-26 Thread Prashant Kumar
Martin,   When I was looking at this, I found that the OpenSsl code uses s3->rbuf and s3->wbuf as scratch buffer. So, what I found is that, once the handshake is complete I could free these buffers safely until we have to send/receive any data on that SSL session. I reallocate s3->rbuf and s3->wbuf

Re: DTLS server doesn't recieve data

2005-09-26 Thread Prashant Kumar
DTLS works fine in OpenSsl when you use socket interface. Look at the s_client and s_server program under apps/ directory. It has code to run the DTLS. You could base your implementation on that.   - Prashant.Manuel Schölling <[EMAIL PROTECTED]> wrote: Hi everybody,I'm going to write a peer2peer-vp

Re: Setting memory buffer for BIO_s_mem operations

2005-06-28 Thread Prashant Kumar
 Look under the documentation for BIO_s_mem, an example is given there.   char data[] = "Hello World"; BIO *mem; mem = BIO_new_mem_buf(data, -1);   Regards, Prashant.Nadav Golombick <[EMAIL PROTECTED]> wrote: Hi,   I was wondering if there is a way to set my own memory buffer for the use of BIO_re

Re: Using BIO with memory channel instead of sockets

2005-05-13 Thread Prashant Kumar
You could either use memory BIO or bio-pair. Example for memory bio could be find in demos/state_machine. The best example for bio pair is the post fix Lutz Jaenicke postfix tls implementation.   - Prashant.Richard <[EMAIL PROTECTED]> wrote: Hello,I am new to openssl. I am interested to learn how t

Re: whats cswift engine error?

2005-04-25 Thread Prashant Kumar
cswift is one of the engine (hardware accelerator) module supported by openssl. Did you call any engine API in your code?   - Prashant.vijay basav <[EMAIL PROTECTED]> wrote: hi i am working on vxworks using openssl-0.9.7e . SSL_read is giving me problems. when checked with error number it says c

Re: openssl usage questions

2005-03-29 Thread Prashant Kumar
Here are answer's to some of your questions:   1. OpenSsl supports the X509 v3 certificate format which is used by IPSEC. So certificates generated by OpenSsl can be used for IPSEC.   2. OpenSsl has support for cut and paste mechanism (you mean PKCS10/PKCS7!). Look at apps/req.c (generation of PKCS

Re: Question about bio pairs

2005-03-21 Thread Prashant Kumar
Hello Edward,   Lutz Jaenicke postfix tls (pfixtls.c) explains BIO pair very well. As I understand the internal BIO is used by the SSL API's, that is when you do "SSL_write" [that is feeding the unecrypted data to the SSL engine], you read the encrypted data through the network bio. Similarly, you

ubsec hw accelerator and DMA Error

2005-03-01 Thread Prashant Kumar
Hello All,   I am trying to use ubsec hw accelerator with openssl and I get a DMA Error from the UBSEC when I try to run the function "ubsec_mod_exp". Any idea ? I am running this on a VXWORKS platform.   Any help is appreciated.   Thank you, Prashant.     Do you Yahoo!? Yahoo! Mail - Find what

Re: Doubt on OpenSSL FIPS Compliance

2005-02-25 Thread Prashant Kumar
I think I got the answer for my question from the following FAQ:   http://oss-institute.org/fips-faq.html#a10   Regards, Prashant.Prashant Kumar <[EMAIL PROTECTED]> wrote: Hello All,   http://www.linuxsecurity.com/content/view/115240/65/   The above news says that the library in version 0.9.7b of

Re: Doubt on OpenSSL FIPS Compliance

2005-02-25 Thread Prashant Kumar
Hello All,   http://www.linuxsecurity.com/content/view/115240/65/   The above news says that the library in version 0.9.7b of OpenSSL was validated--FIPS serves as validation only for encryption modules, not entire software packages.   Does this mean that OpenSsl has to get FIPS certification for

RE: use os BIOs

2005-02-15 Thread Prashant Kumar
Look at demos/state_machine/state_machine.c and Lutz Jaenick's "pfixtls.c" http://www.aet.TU-Cottbus.DE/personen/jaenicke/. Both are great examples for use of memory BIO's and BIO pair.   Thanks, Prashant.David Schwartz <[EMAIL PROTECTED]> wrote: > I'm trying to implement an eap-tls server using op

Socket layer and OpenSsl

2005-01-18 Thread Prashant Kumar
requirements. Did anyone try to use openssl in such an environment ?. Is there any example ?   Thank you for your help.   Regards, Prashant Kumar.__Do You Yahoo!?Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com

RE: Elliptic curve in 9.7a

2003-03-26 Thread Prashant Kumar
Title: RE: Elliptic curve in 9.7a Hello Nils Larsch, Thank you so much for your help. When will OpenSsl 9.8 be released ? Thanks, Prashant Kumar. -Original Message- From: Nils Larsch [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 26, 2003 4:00 AM To: [EMAIL PROTECTED

Elliptic curve in 9.7a

2003-03-25 Thread Prashant Kumar
Title: Elliptic curve in 9.7a Hello Group, Do we support curves K-163 (Group 7) and B-283 (Group 8) in the Elliptic curve implementation in 9.7a ? . Do we have any example program on how can we use it (I checked in the apps directory and didn't find anything) ?. Also, is there any licensing/

RE: BSafe RSA keys

2002-03-08 Thread Prashant Kumar
Alex, I guess B_GetKeyInfo(buffer, obj,KI_PKCS_RSAPrivateBER) returns a ASN1 of PrivateKeyInfo PDU. You have to extract RSAPrivateKey PDU from this PrivateKeyInfo PDU. Once you get RSAPrivateKey PDU you can then use "SSL_CTX_use_PrivateKey_ASN1" API to set the private key. To do all these things

RE: OpenSSL ported to VxWorks?

2002-01-28 Thread Prashant Kumar
Hello Ganesh, For Vxworks you should include . Vxworks doesn't have a "times" function, however, Vxworks has a "time" function. Also, Vxworks has "random" and "srandom" function. About "Time_F" function in "apps" directory, I have not ported this directory. I have ported only the "ssl" and "cry

FW: is there any ssl opensource implemented using cdsa available?

2001-11-21 Thread Prashant Kumar
SL and CDSA" in "presentations" section. Also I think they already provide an "Enhanced adaption layer for the OpenSsl cryptographic plug-in". Look under http://developer.intel.com/ial/security/download.htm Regards, Prashant Kumar. -Original Message- From: Mads [mailto

RE: is there any ssl opensource implemented using cdsa available?

2001-11-20 Thread Prashant Kumar
I saw a paper on Intel or IBM website where they have explained few facts about integrating OpenSsl in CDSA. Also I think some effort is in progress. -Original Message- From: raju [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 20, 2001 7:06 AM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTE

RE: OpenSSL ported to VxWorks?

2001-09-10 Thread Prashant Kumar
ported to VxWorks? Thanks for your reply. Did you create a customized/modified configure script or did you basically do everything by hand? - Alex -Original Message----- From: Prashant Kumar [mailto:[EMAIL PROTECTED]] Sent: Friday, September 07, 2001 11:21 AM To: [EMAIL PROTECTED] Subject: R

RE: OpenSSL ported to VxWorks?

2001-09-07 Thread Prashant Kumar
OpenSsl should compile for Vxworks without any problems. Start compiling. If you find any problems please feel free to contact me. I have it ported to Vxworks. Regards, Prashant. -Original Message- From: Stagg, Alex [mailto:[EMAIL PROTECTED]] Sent: Friday, September 07, 2001 9:52 AM To:

RE: Getting actual blobs of ssl3 / tls1 messages...

2001-08-24 Thread Prashant Kumar
Aslam, Any success doing this. I'm thinking of using Openssl for the same purpose. Please let me know. Regards, Prashant. -Original Message- From: Aslam [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 08, 2001 11:41 AM To: '[EMAIL PROTECTED]' Subject: Getting actual blobs of ssl3 / tls1 m

PPP EAP-TLS Protocol

2001-08-24 Thread Prashant Kumar
Hello Group, Did anyone try implementing PPP EAP-TLS protocol[RFC 2716] using Openssl code. Thanks a lot. Regards, Prashant. __ OpenSSL Project http://www.openssl.org User Support Mailing List

RE: handshake error

2001-08-23 Thread Prashant Kumar
Raja, My 2 cents, since you have not provided any "verify_callback" function the best option for the flags in "SSL_CTX_set_verify" would be "SSL_VERIFY_NONE" Here is the explanation for SSL_VERIFY_NONE. B the server will not send a client certificate request to the client, so the client will no

RE: Ssldump on Windows nt

2001-08-13 Thread Prashant Kumar
Eric, Thanks a lot for your help. Prashant. -Original Message- From: Eric Rescorla [mailto:[EMAIL PROTECTED]] Sent: Monday, August 13, 2001 11:06 AM To: [EMAIL PROTECTED] Subject: Re: Ssldump on Windows nt "Prashant Kumar" <[EMAIL PROTECTED]> writes: > Hell

Ssldump on Windows nt

2001-08-13 Thread Prashant Kumar
Hello Group, Can I install ssldump on Windows NT. The instruction for installation says I need "libpcap" and I guess we can't install "libpcap" on WindowsNT(I failed to). Any help is appreciated.

Beginner Q: Did anyone try porting OpenSsl to Vxworks ?

2001-04-30 Thread Prashant Kumar
Hello Group, Did anyone try porting OpenSsl to Vxworks platform ?. Any success :), jut to gain some confidence. Regards, Prashant. __ OpenSSL Project http://www.openssl.org User Support Mailing