Can we encrypt audio or video in real time with OpenSSL

2008-03-31 Thread learning openssl
Hello, I am wondering if we can encrypt audio or video in real time with OpenSSL? if so, how much overhead will it create? and how about delay and jitter? Thanks in advance! _ Invite your mail contacts to join your friends list wi

OPENSSL_Uplink(00509010,07): no OPENSSL_Applink

2008-02-15 Thread learning openssl
hello, I use the functions: r=RSA_generate_key(bits,e,NULL,NULL) oFile = fopen("MyKey.txt","w"); if (oFile!=0) { RSA_print_fp(oFile, r, 0); fclose(oFile); } to create one RSA key. But I got the error: OPENSSL_Uplink(00509010,07): no OPENSSL_Applink How can I handle this pr

OPENSSL_Uplink(00509010,07): no OPENSSL_Applink

2008-02-16 Thread learning openssl
hello, I use the functions: r=RSA_generate_key(bits,e,NULL,NULL) oFile = fopen("MyKey.txt","w"); if (oFile!=0) { RSA_print_fp(oFile, r, 0); fclose(oFile); } to create one RSA key. But I got the error: OPENSSL_Uplink(00509010,07): no OPENSSL_Applink How can I handle this

RE: OPENSSL_Uplink(00509010,07): no OPENSSL_Applink

2008-02-29 Thread learning openssl
Hello, Thanks for your reply. But I am still a newbie for Openssl, I do not know how to use applink.c in my case. Please help me. > Subject: Re: OPENSSL_Uplink(00509010,07): no OPENSSL_Applink > To: openssl-users@openssl.org > From: [EMAIL PROTECTED] > Date: Sat, 16 Feb 2008 20:48:30 -0500

How can I create libeay32.dll and ssleay32.dll with visual stadio 2005?

2008-03-03 Thread learning openssl
Hello, I hope to create libeay32.dll and ssleay32.dll with visual stadio 2005. But I don't know how to do it. Please help me! _ Express yourself instantly with MSN Messenger! Download today it's FREE! http://messenger.msn.click-

RE: OPENSSL_Uplink(00509010,07): no OPENSSL_Applink

2008-03-12 Thread learning openssl
his is more than I can explain in an email. > > -- > Ken Goldman [EMAIL PROTECTED] > 914-784-7646 (863-7646) > > > learning openssl <[EMAIL PROTECTED]> wrote on 02/29/2008 > 02:51:12 PM: > > > Hello, > > > > Thanks! > > > > I inc

How to debug Openssl DLL

2008-03-16 Thread learning openssl
Hello, I ceated the debug version of ssleay32.dll and libeay32.dll. I have an application compiled with VS2005 (MTD). How can I link the source code of Openssl to my application with VS2005? Thanks! _ Express yourself instantly w

Debug assertion failed. Expression: (_osfile(fh)&FOPEN) with VS2005

2008-03-16 Thread learning openssl
I use VS2005 to create a private RSA key. But I always get the error from the file setmode.c line 58: Expression: (_osfile(fh)&FOPEN) --Debug assertion failed RSA *r =NULL; int bits=512; unsigned long e=RSA_3; FILE *privateKeyFile; r=RSA_generate_key(bits,e,NULL,NULL); fopen_s

RE: Debug assertion failed. Expression: (_osfile(fh)&FOPEN) with VS200

2008-03-18 Thread learning openssl
orget to close the handle: fclose(privateKeyFile); } // done Hope this helps you along, Ger On Sun, Mar 16, 2008 at 8:53 PM, learning openssl <[EMAIL PROTECTED]> wrote: I use VS2005 to create a private RSA key. But I always get the error from the file setmode.c line 58: E

RE: How to debug Openssl DLL

2008-03-18 Thread learning openssl
converting to a MSVC2005 project': that's the hard part. ;-) If you're interested, I plan to put a fresh set of MSVC2005 project files on-line for OpenSSL somewhere next week; I use these to produce [private] MSVC2005 debug (and production) releases. HTH, Ger On Sun, Mar 16, 200

PEM_read_RSAPrivateKey() does not call callback function

2008-03-25 Thread learning openssl
Hello, I created a private key with password. But I can not read that key again. And the callback function "pass_cb" was not called at all. FILE *privateKeyFilePW; RSA *keyReading=NULL; privateKeyFilePW =fopen("PrivatekeyPW.pem", "w"); PEM_write_RSAPrivateKey(privateKeyFilePW, r,EVP_des_ede3_c

RE: PEM_read_RSAPrivateKey() does not call callback function

2008-03-26 Thread learning openssl
Hello Steve, Thanks! It works. > Date: Tue, 25 Mar 2008 18:00:58 +0100 > From: [EMAIL PROTECTED] > To: openssl-users@openssl.org > Subject: Re: PEM_read_RSAPrivateKey() does not call callback function > > On Tue, Mar 25, 2008, learning openssl wrote: > > > >

How many letters can we enter for the PEM pass phrase?

2008-03-26 Thread learning openssl
Hello, I am wondering how many letters we can enter for the PEM pass phrase? It seems that the maxium length is 1024. Can we change the pass phrase later? if so, which functions can we use? Thanks in advance! _ Discover the new W

something about the PEM pass phrase

2008-03-26 Thread learning openssl
Hello, I use the function PEM_write_RSAPrivateKey(privateKeyFilePW, r,EVP_des_ede3_cbc(),NULL, 0, NULL, NULL) to write the RSA private key with a pass phrase. But I am wondering where the pass phrase is stored? later I use the function PEM_read_RSAPrivateKey(privateKeyFilePW, &keyReading, pas

RE: AW: Problems about how to store private key safely

2008-03-31 Thread learning openssl
What do you mean a licence file? is it just a normal file? Could you please explain your idea in more detail? Date: Mon, 31 Mar 2008 12:45:00 -0500 From: [EMAIL PROTECTED] To: openssl-users@openssl.org Subject: Re: AW: Problems about how to store private key safely CC: [EMAIL PROTECTED] How abo