Fwd: Application simply comes out in the function PEM_write_RSAPrivateKey.The private key file is simply 0KB.

2011-06-22 Thread Kamalraj Madhurakasan
-- Forwarded message -- From: Kamalraj Madhurakasan Date: Thu, Jun 23, 2011 at 12:04 PM Subject: Application simply comes out in the function PEM_write_RSAPrivateKey.The private key file is simply 0KB. To: openssl-users@openssl.org Hi, I am new to openssl and trying to create th

Application simply comes out in the function PEM_write_RSAPrivateKey.The private key file is simply 0KB.

2011-06-22 Thread Kamalraj Madhurakasan
Hi, I am new to openssl and trying to create the Self-signed Certificate using openssl in my application. I downloaded openssl for windows (version OpenSSL 1.0.0d 8 Feb 2011) and got libeay32.lib, ssleay32.lib, libeay32.dll and ssleay32.dll. I linked my application with these libraries and kept

Re: Using Intel AES-NI

2011-06-22 Thread Ryan B
I'm using snapshot, is it still required? if so, is there an updated patch available? On Thu, Jun 23, 2011 at 10:49 AM, Jeffrey Walton wrote: > Hi mp3geek, > > On Wed, Jun 22, 2011 at 6:05 PM, Ryan B wrote: >> Is this supported in OpenSSL trunk? Do I need any additional patches >> or updated pat

Re: Using Intel AES-NI

2011-06-22 Thread Jeffrey Walton
Hi mp3geek, On Wed, Jun 22, 2011 at 6:05 PM, Ryan B wrote: > Is this supported in OpenSSL trunk? Do I need any additional patches > or updated patches? It is supported in OpenSSL 1.0.0, but you will need to patch (IIRC). Jeff __

Using Intel AES-NI

2011-06-22 Thread Ryan B
Is this supported in OpenSSL trunk? Do I need any additional patches or updated patches? http://rt.openssl.org/Ticket/Display.html?id=2065 __ OpenSSL Project http://www.openssl.org User Support Mail

hello my dear

2011-06-22 Thread shankar ks
it is really best place for us i had try , it is truth and service is very good fast ship and best quality hope you can try too here is : < www.bestsker.com > enjoy yourself

Re: problem with EVP_DecryptFinal_ex function

2011-06-22 Thread Wim Lewis
On 22 Jun 2011, at 5:46 AM, Damir Musulin wrote: > I have created a decrypt function and it fails (how wonderful) > > The problem lies in the EVP_DecryptFinal_ex. > I have made use of the ERR_print_errors_fp(stderr); option to see what > is wrong but it is quite > a cryptic message: > 2621:error:

problem with EVP_DecryptFinal_ex function

2011-06-22 Thread Damir Musulin
Dear All, I'm brand new to programming against OpenSSL (EVP) so if i make any stupid mistake I'm sorry in advance. I use the blowfish algorithm from the OpenSSL page to encrypt a string in C. to code is from: http://www.openssl.org/docs/crypto/EVP_EncryptInit.html I have created a decrypt functi

Re: Replacement of functions that operate with sockets

2011-06-22 Thread David Schwartz
On 6/22/2011 3:20 AM, ml.vladimbe...@gmail.com wrote: Where can I find this example with BIO pairs? I can't understand only with openssl's documentation how to work with BIO pairs. I will be grateful for the help. Look in ssl/ssltest.c, in the doit_biopair function. DS _

Linking kdelibs against openssl 1.0

2011-06-22 Thread David Doria
I am trying to build kdelibs. I built openssl with ./config --prefix=/home/ddoria/bin shared make make install Everything seemed to go well. Then when I run cmake on kdelibs, it seems to find my system version of openssl (/usr/...) even though I have /home/ddoria/bin first on PATH and /home/ddor

Re: Replacement of functions that operate with sockets

2011-06-22 Thread ml.vladimbelov
David Schwartz(Wednesday, June 22, 2011 12:04 PM) : I do exactly this using BIO pairs. I manage all four data streams. When the application wants to send data to the other side, I hand it to OpenSSL. When I receive data on the socket, I hand it to OpenSSL. When I can send data on the socket, I

32bit vs 64bit performance

2011-06-22 Thread Ryan B
Using OpenSSL in a 64bit environment (Linux) makes any difference in performance or speed? __ OpenSSL Project http://www.openssl.org User Support Mailing Listopenssl-users@openssl

Re: Replacement of functions that operate with sockets

2011-06-22 Thread David Schwartz
On 6/21/2011 2:53 AM, ml.vladimbe...@gmail.com wrote: Jim, for me the main goal to replace functions that operate with sockets is performance. I want to use OpenSSL with Windows IO Completion ports. The method that you suggest is very interesting but the main is not achieved - OpenSSL is still w

Re: Replacement of functions that operate with sockets

2011-06-22 Thread David Schwartz
On 6/21/2011 2:40 AM, ml.vladimbe...@gmail.com wrote: The fourth function is SSL_EncryptUserData, which encrypt our own application data before we can send their to secure channel: int SSL_EncryptApplicationData(char *buf_in, int buf_in_len, char buf_out, int buf_out_len, int *need_buf_out_len)