RE: RSA_private_decrypt take too long time:(

2003-07-01 Thread Steven Reddie
RSA does take a lot of time compared to, say, DES, but they're used for completely different things. To understand the difference you should read a book such as Applied Cryptography by Bruce Schneier, or a better place to start might be the RSA Crypto FAQ at http://www.rsasecurity.com/rsalabs/faq/

Re: RSA_private_decrypt take too long time:(

2003-07-01 Thread linux guy
I am just a greenhand of openssl I read some artcile which says that RSA_private_decrypt takes a great of the CPU usage? should I change to another encrypt/decrypt method? BTW:I use the default method SSLv23. - Original Message - From: "linux guy" <[EMAIL PROTECTED]> Date: Tue, 01 Jul 200

RE: RSA_private_decrypt take too long time:(

2003-07-01 Thread Steven Reddie
I don't think anyone on this list is going to be able to tell you if you have enough memory. Unless you can provide more information such as how long it is taking you are not likely to get any help. That function can take considerable time to complete and of course it will depend on the speed of

Re: OpenSSL book example programs

2003-07-01 Thread chiba4mail
Take a look at: http://www.openssl.org/docs/HOWTO/keys.txt http://www.openssl.org/docs/HOWTO/certificates.txt Bye, Alessio --- Oliver Foden <[EMAIL PROTECTED]> ha scritto: > Hello as a new user of OpenSSL I've been trying to > get > the examples in the OpenSSL book to run. > > I currently have

RSA_private_decrypt take too long time:(

2003-07-01 Thread linux guy
hi,I am providing one https server on our vxworks(ppc603) board, I find function RSA_private_decrypt(in ssl3_get_client_key_exchange of s3_srvr.c) takes too long time,I don't know if the memory of our board is not enought or some reason else:( -- __

OpenSSL book example programs

2003-07-01 Thread Oliver Foden
Hello as a new user of OpenSSL I've been trying to get the examples in the OpenSSL book to run. I currently have a problem with Example 10-6 from the book. (enclosed) I need to make these files: #define CA_FILE "CA.pem" #define CA_KEY "CAkey.pem" to work with the program. To make a certificate.

OpenSSL book example programs

2003-07-01 Thread Oliver Foden
Hello as a new user of OpenSSL I've been trying to get the examples in the OpenSSL book to run. I currently have a problem with Example 10-6 from the book. (enclosed) I need to make these files: #define CA_FILE "CA.pem" #define CA_KEY "CAkey.pem" to work with the program. To make a certificate.

Re: Encryption libraries bundled with OpenSSL

2003-07-01 Thread Martin Witzel
You may want to check out the web page at http://www.openssl.org/docs/ where you see the three components spelled out. You will see that there is one crypto library. Regards, Martin __ OpenSSL Project

Encryption libraries bundled with OpenSSL

2003-07-01 Thread MOHANRBR
  What are the encryption libraries that come bundled with OpenSSL? Can anyone provide me the list of point to the source of this info please?   thank you. Mohan

Checking client certificate

2003-07-01 Thread Marius Cabas
I'm trying to check the client certificate from the server side but it's not working well. Below is a piece of code from a server and a client application. Is something wrong with my code? because the SSL_accept function is failing with "SSL3_GET_CLIENT_CERTIFICATE:peer did not return a certific

SSL_accept is too slow:(

2003-07-01 Thread linux guy
hi,I am using openssl-0.9.7b 0.9.7b under vxworks 5.4(ppc603). I find when my code invoke SSL_accept(the method is ssl23), when function ssl23_get_client_hello invoke return(SSL_accept(s)); it is very slow! both the display of the certificate and pages to client is very very slow!:( could anyone