RSA key which size is less than 256 ...

2004-03-23 Thread linux guy
our our webserver is using openSSL to provide HTTPS service, we create a self-singed certificates with one 1024 bits private key, so the server will be slow to handle the communication I wanna decrease the size of the private key,but openssl can't generate the key which size is less than 256? s

RSA key which size is less than 256 ...

2004-03-23 Thread linux guy
our our webserver is using openSSL to provide HTTPS service, we create a self-singed certificates with one 1024 bits private key, so the server will be slow to handle the communication I wanna decrease the size of the private key,but openssl can't generate the key which size is less than 256? s

how to generate one rsa key which size is 256 or less than 256

2004-03-23 Thread linux guy
openssl's genrsa can't do this work,any other tool to do this work? thx -- __ Check out the latest SMS services @ http://www.linuxmail.org This allows you to send and receive SMS through your mailbox. Powered by Outblaze __

Re: how to generate one rsa key which size is 256 or less than 256

2004-03-23 Thread linux guy
yes,I am sure,can you give me any advice?:) - Original Message - From: Rich Salz <[EMAIL PROTECTED]> Date: Tue, 23 Mar 2004 22:47:40 -0500 (EST) To: linux guy <[EMAIL PROTECTED]> Subject: Re: how to generate one rsa key which size is 256 or less than 256 > > openssl'

Re: how to generate one rsa key which size is 256 or less than 256

2004-03-23 Thread linux guy
On Wed, Mar 24, 2004 at 11:35:34AM +0800, linux guy wrote: > > openssl's genrsa can't do this work,any other tool to do this work? > > If you must, > > Python 2.3.3 (#2, Mar 7 2004, 15:57:59) > [GCC 2.95.4 20020320 [FreeBSD]] on freebsd4 > Type "help"

IE's problem while visiting HTTPS

2004-03-28 Thread linux guy
IE can not visit our HTTPS webserver while I create a self-signed certificate with a RSA key which size is less than 365 bits,but they works well when the RSA size is more than or eaqual to 365. -- __ Check out the latest SMS services @ http://www

Re: IE's problem while visiting HTTPS

2004-03-30 Thread linux guy
sorry for I mistype the number...,that is 465 instead of 356. thx a lot... - Original Message - From: "Dr. Stephen Henson" <[EMAIL PROTECTED]> Date: Mon, 29 Mar 2004 12:31:02 +0200 To: [EMAIL PROTECTED] Subject: Re: IE's problem while visiting HTTPS > On Mon,

port openssl to vxworks 5.4

2003-06-25 Thread linux guy
hi all,I am porting openssl 0.9.7b to vxworks 5.4 now. here is what I have do: 1.install active perl one my win2000 PC. 2.install cygwin 3.run ./configure no-asm no-threads --openssldir=d:\\openssl-0.9.7b vxworks-ppc405 to generate the Makefile.ssl but when I run make,error below occurs: bash-2

OpenSsl on vxworks 5.4

2003-06-29 Thread linux guy
hi,I'm porting openssl-0.9.7b to tornado 2.0.2(vxworks 5.4) I find that PEM_read_X509()&PEM_read_RSAPrivateKey() in sslLib.c r all invoked by 3 args,but they r declare in openssl/pem.h with 4 args,and I find s_server.c in apps call PEM_read_X509 with 3 args, so I think I miss some *.h and some MIC

Re: OpenSsl on vxworks 5.4

2003-06-29 Thread linux guy
)); } -- I change PEM_read_X509 (fp,x509Cert, callbackFunc) to PEM_read_X509 (fp,x509Cert, callbackFunc,NULL). does this can works correctly? - Original Message - From: "linux guy" <[EMAIL PROTECTED]> Date: Mon, 30 Jun 2003 09:48:56 +0800 To: [EMAIL PROTECTED] Subject: OpenSs

Re: OpenSsl on vxworks 5.4

2003-06-29 Thread linux guy
)); } -- I change PEM_read_X509 (fp,x509Cert, callbackFunc) to PEM_read_X509 (fp,x509Cert, callbackFunc,NULL). can this work correctly? - Original Message - From: "linux guy" <[EMAIL PROTECTED]> Date: Mon, 30 Jun 2003 09:48:56 +0800 To: [EMAIL PROTECTED] Subject: OpenSsl on v

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

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:( -- __

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]> D

test

2003-08-28 Thread linux guy
test -- __ http://www.linuxmail.org/ Now with e-mail forwarding for only US$5.95/yr Powered by Outblaze __ OpenSSL Project http://www.openssl.org User Su

BIO_read hang!

2003-08-28 Thread linux guy
hi,I port openssl 0.97b to our vxworks to supply web server with ssl. when several(3 for example) clients connect to the web server,I find the process hang on function ssl23_get_client_hello or ssl3_check_client_hello, I find BIO_read get hang when I go in futher. I think the BIO_read is blocked,b

RSA key size is 64 or 128?

2003-09-01 Thread linux guy
why I can't build certificate with one 64 or 128 bits size RSA key? -- __ http://www.linuxmail.org/ Now with e-mail forwarding for only US$5.95/yr Powered by Outblaze __ OpenSSL Proje

about hostname in certificate

2003-09-04 Thread linux guy
I am using java to test my ssl supported web server, I alwayse get error HTTPS hostname wrong: should be <192.168.0.1>, I google the error it seems this happens if the hostname in the URL does not match the hostname in the certificate? but my hostname in url is 192.168.0.1,is the hostname in cert

Re: Open-SSL - Vxworks port

2003-09-09 Thread linux guy
is ur product the server one? maybe your sslconfig is not correct. - Original Message - From: [EMAIL PROTECTED] Date: Tue, 9 Sep 2003 14:13:57 +0530 To: [EMAIL PROTECTED], [EMAIL PROTECTED] Subject: Open-SSL - Vxworks port > > > > > Hi, > > TLS feature was implemented using the OpenSS

Re: Open-SSL - Vxworks port

2003-09-09 Thread linux guy
hello akchaudhury,I just finished one SSL-supported web server under vxworks(ppc603), and I don't know much about TLS. ur configure command to generate the Makefile for u to make libcrypto.a&libssl.a with is (almost)right. since the error prompt is BAD CERTIFAICATE,if ur product is a server one,U n

how to build openssl to enable non-blocking I/O?

2003-10-08 Thread linux guy
any build option is provided to enable non-blocking I/O? thx -- __ http://www.linuxmail.org/ Now with e-mail forwarding for only US$5.95/yr Powered by Outblaze __ OpenSSL Project

how to build openssl-0.9.7b\demos\ssl\cli.cpp under linux?

2003-10-20 Thread linux guy
I use cpp -lcrypto cli.cpp, but get some function undefined error -- __ Check out the latest SMS services @ http://www.linuxmail.org This allows you to send and receive SMS through your mailbox. Powered by Outblaze