Hi!
Thankx for your advices. Finally, I got it working with
RSA_public_encrypt() and RSA_private_decrypt().
--
Alexey
sms stands for save my soul
__
OpenSSL Project http://www.openssl.org
User
note, also see
http://stackoverflow.com/questions/2012645/can-you-help-me-get-my-head-around-openssl-public-key-encryption-with-rsa-h-in-c
Cheers,
Ben.
On 20 January 2010 16:22, Anand Patel wrote:
> For RSA API take a look at http://openssl.org/docs/crypto/rsa.html#
> -Anand
>
>
> On Wed, Jan
For RSA API take a look at http://openssl.org/docs/crypto/rsa.html#
-Anand
On Wed, Jan 20, 2010 at 11:18 AM, Anand Patel wrote:
> EVP is oneway of implementing your solution. Look at Example section of
> http://openssl.org/docs/crypto/EVP_EncryptInit.html#
>
> -Anand
>
>
> On Wed, Jan 20, 2010 a
EVP is oneway of implementing your solution. Look at Example section of
http://openssl.org/docs/crypto/EVP_EncryptInit.html#
-Anand
On Wed, Jan 20, 2010 at 10:14 AM, Alexey Luchko wrote:
> Hi!
>
> I'm new to openssl.
>
> I need to encrypt and decrypt approx 1k block of data with rsa.
> What is
Hi there Alexey
Many people will tell you to use the EVP stuff and quite frankly, they're
most likely right. However, I've not managed to figure out the EVP stuff so
I use the public_encrypt and private_decrypt functions instead. I have
written the following functions to encapsulate the functional