RE: basic SSL

2001-04-30 Thread Hegde, Ramdas
There are code examples in the openssl installation under the apps directory. If you need a more detailed example, you can check out Eric Rescorla's book "SSL and TLS". It has a complete chapter on coding and the code examples from the book are available at http://www.rtfm.com/sslbook/examples R

RE: Strange behaviour with SSL_CTX_set_verify

2001-03-22 Thread Hegde, Ramdas
. _ Greg Stark Ethentica, Inc. [EMAIL PROTECTED] _ - Original Message - From: "Hegde, Ramdas" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 22, 2001 6:10 PM Subject: Strange behaviour with SSL_CTX_set_verify

Strange behaviour with SSL_CTX_set_verify

2001-03-22 Thread Hegde, Ramdas
After I do the SSL initialization, I do the following in my server code. while(1){ if((s=accept(sock,0,0))<0) err_exit("Problem accepting"); sbio=BIO_new_socket(s,BIO_NOCLOSE); ssl=SSL_new(ctx); SSL_set_bio(ssl,sbio,sbio); SSL_CTX_set_verify(ctx, SSL_VERI

Generation of encryption key

2001-03-20 Thread Hegde, Ramdas
I am trying to figure out when the encryption key is generated when using SSL. I currently have an application which has a client and server piece. For the purpose of testing I have generated a selfsigned certificate using openssl req -x509 -text -new -newkey rsa:1024 -out a.pem -md5 I need to ge

RE: information on SSL

2000-12-15 Thread Hegde, Ramdas
After you download and untar the openssl source from from http://www.openssl.org , there are install instructions in the INSTALL file. If you come across problems installing, look at the FAQ at http://www.openssl.org/related or post a question back to this dlist. I am not aware of any off-the-shel

RE: Programmers reference for Openssl APIs

2000-12-06 Thread Hegde, Ramdas
06, 2000 10:51 AM To: '[EMAIL PROTECTED]' Subject: RE: Programmers reference for Openssl APIs Try http://www.columbia.edu/~ariel/ssleay/ -Original Message----- From: Hegde, Ramdas [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 06, 2000 11:12 AM To: '[EMAIL PROT

Programmers reference for Openssl APIs

2000-12-06 Thread Hegde, Ramdas
Hello In the OPENSSL website there is a link to an OPENSSL Programmer's Reference at ~http://www.psy.uq.oz.au/~ftp/Crypto/ssl.html which is not reachable. Does anyone know of a document/website where I can find a more detailed explaination of the Openssl APIs something like a programming manual?

Checking SSL3 compliance

2000-11-30 Thread Hegde, Ramdas
Hi Is there some utility out there which verifies if your application is following the SSL3 specification in terms of Ciphers/Handshakes etc? The intent is to verify that two applications are actually talking SSL3 without digging into the application code. Thanks ramdas

RE: Crypt::SSLeay Problem

2000-11-30 Thread Hegde, Ramdas
Check and see if the file libssl.a is in the /usr/local/ssl/lib directory because it looks from your error message that it is missing that file. Ramdas -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 30, 2000 10:28 AM To: [EMAIL PROTECTED] S

Using OPENSSL toolkit

2000-11-20 Thread Hegde, Ramdas
Hello All I am new to the SSL world and have this task to write an application which talks to another application using SSL_RSA_WITH_RC4_128_MD5. I have downloaded and installed the OPENSSL toolkit. I am looking for something like a programming reference to guide me thru the steps necessary to ac