problem on RSA_public_decrypt()

2010-06-27 Thread
Dear all, I am programming to achieve the RSA PSS sign for the messages. For the signature, I think the result is correct by the information in gdb. However, for the verification, the RSA_public_decrypt() always fails to put the decrypted signature into the designed buffer, which makes the

RE: questions about RSASSA-PSS

2010-06-22 Thread
Dear Steve, Thank you for your reply. Now, I know the support status of RSASSA-PSS in the openssl. Thank you so much. Best Regards,Xiang Lu Date: Tue, 22 Jun 2010 13:24:52 +0200 From: st...@openssl.org To: openssl-users@openssl.org Subject: Re: questions about RSASSA-PSS On Tue, Jun 22,

questions about RSASSA-PSS

2010-06-21 Thread
Hi all, Could anybody please tell me the support status of RSASSA-PSS in openssl with the version after 0.9.8l. If there is the implementation, could you please tell me which functions I can call directly for my project purpose. Thank you so much. Regards,Xiang

RE: questions about RSASSA-PSS

2010-06-21 Thread
, -- Mounir IDRASSI IDRIX http://www.idrix.fr On 6/22/2010 3:26 AM, 芦翔 wrote: Hi all, Could anybody please tell me the support status of RSASSA-PSS in openssl with the version after 0.9.8l. If there is the implementation, could you please tell me which functions I can call directly for my

RE: questions about RSASSA-PSS

2010-06-21 Thread
/openssl_pss_signature.c . For high-level function (maybe EVP interface), I will let other give their hints. Cheers, -- Mounir IDRASSI IDRIX http://www.idrix.fr On 6/22/2010 3:26 AM, 芦翔 wrote: Hi all, Could anybody please tell me the support status of RSASSA-PSS in openss l with the version

how to interpret the speed result using openssl command line

2010-04-21 Thread
Dear all, I input the command speed rc4 under the prompt openssl. The result is as follows:Doing rc4 for 3s on 16 size blocks: 778800 rc4's in 1.53sDoing rc4 for 3s on 64 size blocks: 219433 rc4's in 1.55sDoing rc4 for 3s on 256 size blocks: 52962 rc4's in 1.45sDoing rc4 for 3s on 1024 size

FW: Help! Encryption Absorted

2010-04-21 Thread
From: luxiang...@hotmail.com To: openssl-users@openssl.org Subject: Help! Encryption Absorted Date: Wed, 21 Apr 2010 17:52:04 + Dear all, I would like to encrypt my data before they are emitted. I use the following function:EVP_CIPHER_CTX_ex(ctx, EVP_des_ede_cbc(), NULL, key,

Help! Encryption Absorted

2010-04-21 Thread
Dear all, I would like to encrypt my data before they are emitted. I use the following function:EVP_CIPHER_CTX_ex(ctx, EVP_des_ede_cbc(), NULL, key, iv).Unfortunately, when come to this function, my program jumped into the end omitting all the following encryption operations. The whole program

Encryption using openssl lib

2010-04-20 Thread
Dear all, I would like to encrypt the transmitting data on the server side before the data is send to a socket. And then, decrypt the data from the socket on the client side. I am using the following code, which is from Internet. #include encryption.h byte_t* BufferEncryption(const

RE: ERROR LINK2019

2010-04-14 Thread
. Suggestions will be really appreciated. Thank you. Best Regards, Xiang Date: Wed, 14 Apr 2010 15:55:49 +0200 From: modem-...@gmx.net To: openssl-users@openssl.org CC: wr...@rowe-clan.net Subject: Re: ERROR LINK2019 Hi 芦翔, I also used mixed C / C++ Project and did not used

RE: ERROR LINK2019

2010-04-14 Thread
Apr 2010 22:32:27 +0200 From: modem-...@gmx.net To: openssl-users@openssl.org Subject: Re: ERROR LINK2019 Hi 芦翔, the way Windows/C is using the SSL Lib here, is a so called Dynamic Link Library via IMPLIB loading. This means, each DLL file has a corresponding LIB file which is statically

ERROR LINK2019

2010-04-13 Thread
Dear all, I am trying to add the security flavor to an application. To achieve this objective, I wrote the codes to establish a security tunnel between the server and the client with VC2008. When I build the whole project, there are tens of similar errors. All of them are as follows:

RE: ERROR LINK2019

2010-04-13 Thread
Regards, Xiang Date: Tue, 13 Apr 2010 17:57:27 -0500 From: wr...@rowe-clan.net To: openssl-users@openssl.org CC: luxiang...@hotmail.com Subject: Re: ERROR LINK2019 On 4/13/2010 4:49 PM, 芦翔 wrote: Dear all, I am trying to add the security flavor to an application. To achieve

RE: ERROR LINK2019

2010-04-13 Thread
. The functions Date: Tue, 13 Apr 2010 17:57:27 -0500 From: wr...@rowe-clan.net To: openssl-users@openssl.org CC: luxiang...@hotmail.com Subject: Re: ERROR LINK2019 On 4/13/2010 4:49 PM, 芦翔 wrote: Dear all, I am trying to add the security flavor to an application. To achieve this objective, I

RE: ERROR LINK2019

2010-04-13 Thread
Date: Tue, 13 Apr 2010 16:34:35 -0700 From: jfarr...@pillardata.com To: openssl-users@openssl.org CC: luxiang...@hotmail.com From: William A. Rowe Jr. On 4/13/2010 4:49 PM, 芦翔 wrote: Dear all, I am trying to add the security flavor to an application. To achieve

questions about compatibility with Kerberos5 Krb5-1.7

2010-01-08 Thread
Hi, If the openssl-0.9.8l is compatible with krb5-1.7 from MIT according to RFC2712? If the OPTIONS=no-krb5 in Makefile will prevent the functions related with krb5-1.7? How should I modify the Makefile to handle the integration of the two security systems. Thank you.

RE: questions about compatibility with Kerberos5 Krb5-1.7

2010-01-08 Thread
Dr.Henson, Thank you for you reminding. I am cross compiling the openssl into an arm board with kerberos support. My cross compiling for openssl is following the article written by David Sayada in http://www.crosscompile.org/static/pages/OpenSSL.html. Before executing my modified Makefile,