Re: Re: creating RSA private/public key pair

2002-07-23 Thread Manish Ramesh Chablani
Hi, Check out following functions... i2d_RSAPublicKey() and d2i_RSAPublicKey() hope this helps, Manish -- Manish Chablani ([EMAIL PROTECTED]), Graduate Student, Computer Science Department, Indiana University. Make to

Re: an advise

2002-07-16 Thread Manish Ramesh Chablani
Hi, I am a newbie to security and SSL.. but thought this could help.. ( I am not sure if I am answering your question) RSA_blinding_on() takes care of the attack which measures the encryption and decryption time taken by RSA. hope this will be of some help, Manish >Dat

Re: RSA public and private key lengths (newbie question)

2002-07-14 Thread Manish Ramesh Chablani
Hi, Thanks a lot for the reply. I have one more question. >The private key contains all the RSA key data whereas the public key >contains just the public components. So yes, this is normal. > >Cheers, >Geoff Since public key contains only the public components is it possible to encryp

encrypting with rsa public key..

2002-07-14 Thread Manish Ramesh Chablani
Hi, In my c code I am sending the rsa public key from A (which generated the RSA key pair) to B. B now tries to encrypt a message with the public key received from A and send the encryted message to A and A decrypts it with the private key of the RSA key pair it generated. Now

RSA public and private key lengths (newbie question)

2002-07-13 Thread Manish Ramesh Chablani
Hi, Here is the snippet of my code which generates RSA key pair and then saves the public and private keys in character buffer. However the output shows the public key and private keys are of different sizes.. I was under the impression that pub and priv keys are of same sizes.. is my

Re: Need help

2002-07-03 Thread Manish Ramesh Chablani
Hi, Try using pod2text, pod2man, ... to convert the .pod files to the format required by you.. cheers, Manish -- Manish Chablani ([EMAIL PROTECTED]), Graduate Student, Computer Science Department, Indiana University ---

Re: help needed regarding RSA key generation.

2002-06-27 Thread Manish Ramesh Chablani
On Thu, 27 Jun 2002, Vadim Fedukovich wrote: > On Wed, Jun 26, 2002 at 07:35:59PM -0500, Manish Ramesh Chablani wrote: > > Hi, > > > > I am new to openSSL. I want to use openSSL to provide cryptographic > > functions like (key generation, encryption with publi

help needed regarding RSA key generation.

2002-06-26 Thread Manish Ramesh Chablani
Hi, I am new to openSSL. I want to use openSSL to provide cryptographic functions like (key generation, encryption with public key, signing with private key, MD5 calculation) i.e. basically I want to use OpenSSL's Crypto library. I am trying to add authentication/security in MPI implem