RE: [tls] >>> TLS 1.0 Alert [length 0002], fatal unknown_ca

2011-06-06 Thread Dave Thompson
> From: owner-openssl-us...@openssl.org On Behalf Of Tahir Mahmood > Sent: Wednesday, 01 June, 2011 11:48 > Actually I have install Cent OS5 and Freeradius 2.0 > http://www.howtoforge.com/wifi-authentication-accounting-with-freeradius-on- centos5-p3 > created certificat

RE: Using PCKS Padding in OpenSSL

2011-06-06 Thread Dave Thompson
> From: owner-openssl-us...@openssl.org On Behalf Of greenelephant > Sent: Sunday, 05 June, 2011 05:20 > Thanks for the reply Dave. I am grateful for your advice. I > am a novice as you have probably gathered. > If I am not wrong in my judgement you seem to have some expertise on > cryptology.

Re: Bug in EVP_DigestFinal_ex() in version 1.0.0d?

2011-06-06 Thread Victor Duchovni
On Mon, Jun 06, 2011 at 06:22:53PM -0500, Erwin Himawan wrote: > I am using Netbean 7.0 for my IDE. > I am using cygwin: CYGWIN_NT-5.1 1.7.9(0.237/5/3) 2011-03-29 10:10 i686 > > My host platform is WindowXP 32 bit. > I am building the openssl ver 1.0.0d using the cygwin. > The path to the OpenSSL

Re: Bug in EVP_DigestFinal_ex() in version 1.0.0d?

2011-06-06 Thread Erwin Himawan
Thanks for the response. It is my bad not to include the necessary detail. I guess, your answer indicating that this example compiles and runs fine is sufficient. Furthermore, I your other questions are also valuable for me to make sure my IDE is setup properly. In the mean time, here is my envir

Re: Bug in EVP_DigestFinal_ex() in version 1.0.0d?

2011-06-06 Thread Victor Duchovni
On Mon, Jun 06, 2011 at 03:18:12PM -0500, Erwin Himawan wrote: > I am trying out the example in this > http://www.openssl.org/docs/crypto/EVP_DigestInit.html. > > When I build this example using ver 1.0.0d, the example crashes at E > VP_DigestFinal_ex. When I build this example using previous ver

Bug in EVP_DigestFinal_ex() in version 1.0.0d?

2011-06-06 Thread Erwin Himawan
Hi All, I am trying out the example in this http://www.openssl.org/docs/crypto/EVP_DigestInit.html. When I build this example using ver 1.0.0d, the example crashes at E VP_DigestFinal_ex. When I build this example using previous version , the example works as expected. Any thoughts or comments w

RE: s_client

2011-06-06 Thread Travis Dimmig
I'm sure I could, it just irked me that openssl s_client didn't seem to work the way it is supposed to. I can work around the problem, but I'd like to know if it is a problem with the utility or if I was using it incorrectly. -Travis > -Original Message- > From: owner-openssl-us...@ope

Re: *** Spam *** Re: OpenSSL nor working for me on windows 7

2011-06-06 Thread Matt Thompson
Thanks David, That worked a treat. I missed it somehow when I was adding a return. Matt On 31 May 2011 21:32, Dave Thompson wrote: >> From: owner-openssl-us...@openssl.org On Behalf Of Kyle Hamilton >> Sent: Thursday, 26 May, 2011 21:28 > >> It looks like you've base64-encoded the actual cipher

RE: Tutorial to start with openssl.

2011-06-06 Thread Jeremy Farrell
> From: Igor Galic > > > I am a newbie, any tutorial to start with openssl? > > That highly depends on what you want to achieve. > There *is* documentation. http://openssl.org/docs/ > > You probably want to start with the > http://openssl.org/docs/HOWTO/ which explains some of the > essential co

Re: s_client

2011-06-06 Thread Igor Galić
- Original Message - > Trying to use the "openssl s_client" utility to test an https page. > I > am able to connect, and to perform a GET and see pages, but I can't > make > a POST work. I try to do something like: Having established that GET works via SSL, why not use something like

Re: Tutorial to start with openssl.

2011-06-06 Thread Igor Galić
> All, > > > I am a newbie, any tutorial to start with openssl? That highly depends on what you want to achieve. There *is* documentation. http://openssl.org/docs/ You probably want to start with the http://openssl.org/docs/HOWTO/ which explains some of the essential concepts you'll need to know

s_client

2011-06-06 Thread Travis Dimmig
Trying to use the "openssl s_client" utility to test an https page. I am able to connect, and to perform a GET and see pages, but I can't make a POST work. I try to do something like: POST /path/to/page HTTP/1.1 HOST: internal.host.ip.address Content-Type: plain/text Content-Length: 6 foobar

Re: How to embed a CA certificate in a program ?

2011-06-06 Thread Albrecht Schlosser
Hi Michel, many thanks for this very quick reply ! On 06.06.2011 14:20, Michel (PAYBOX) wrote: Hi Albrecht, I might be wrong, but I think you should use instead SSL_CTX_get_cert_store() and then *X509_STORE_add_cert* to add the certificate to the list of trusted ones that will be used for ve

Re: How to embed a CA certificate in a program ?

2011-06-06 Thread Michel (PAYBOX)
Hi Albrecht, I might be wrong, but I think you should use instead SSL_CTX_get_cert_store() and then *X509_STORE_add_cert* to add the certificate to the list of trusted ones that will be used for verification. Cerificates added using SSL_CTX_add_extra_chain_cert() are not trusted.

How to embed a CA certificate in a program ?

2011-06-06 Thread Albrecht Schlosser
Hi, I'm creating a client/server application with OpenSSL, using self-signed certificates. The client and server shall verify each other's certificate, and this works well, if I use certificate files. Now I'd like to embed the CA certificate in the client's code for easier installation. Hence I'

Tutorial to start with openssl.

2011-06-06 Thread Benix Vincent
All, I am a newbie, any tutorial to start with openssl? Benix.