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 veri

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

RE: questions about RSASSA-PSS

2010-06-21 Thread
ere : http://www.idrix.fr/Root/Samples/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: > >

RE: questions about RSASSA-PSS

2010-06-21 Thread
e), 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 openssl > > with the version after 0.9

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

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

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, iv).

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 siz

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 byt

RE: ERROR LINK2019

2010-04-14 Thread
14 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 ha

RE: ERROR LINK2019

2010-04-14 Thread
an I use the compiled dll file. 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 芦翔, >

RE: ERROR LINK2019

2010-04-13 Thread
019 > 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

RE: ERROR LINK2019

2010-04-13 Thread
by C. 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 fl

RE: ERROR LINK2019

2010-04-13 Thread
xtern"? Thank you so much. Best 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, > &g

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: >SS

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, I

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.