vote up 0 vote down star

Where can I get a sample code or documentation on using the OpenSSL ECC support to encrypt or decrypt a text string ? I am able to generate ECC private/public key using openSSL API's, but I don't know how to encrypt a plain text using that key !

flag

6 Answers

vote up 0 vote down

Hi, I have an amateur question .. How do I find "key" encoding or decoding.( I´m not shure) In fact I know one set of numbers and I know its encoded form. Can I find out that "key" and on basic of that decode the other coded text with same that key (on the grounds that key)

THANK YOU VERY MUCH!!!

link|flag
vote up 0 vote down

hi,

i'm doing a comparison of performance between ECC and RSA , i used ECDsaCng class for ECC,i used the SignData(),verifyData() methods. i used RSACryptoServiceProvider class for RSA,using signData(),VerifyData() methods also.

but the signing of data is including the compute of hash,and i want to do the comparsion between the tow algorithms as encryption methods. so the signing and verifying of data times between the tow algorithms will not be accurate.

and i noticed there are Encrypt(),Decrypt() methods in RSACryptoServiceProvider class but no such methods in ECDsa class,

so the question is :how can i use ECC as encryption method,like to encrypt a message by the public key and decrypt it by the private or encrypt it bey private and decrypt by public?

another question is :how can i use RSAcng class because i didn't find it in System.Security.Cryptography namespace,and i am using VS 2008. here is some info about this class in this link.

http://clrsecurity.codeplex.com/wikipage?title=Security.Cryptography.RSACng

thanks alot Best Regards

Abdulrhman ALHOMSI

link|flag
vote up 0 vote down

hi,

i'm doing a comparison of performance between ECC and RSA , i used ECDsaCng class for ECC,i used the SignData(),verifyData() methods. i used RSACryptoServiceProvider class for RSA,using signData(),VerifyData() methods also.

but the signing of data is including the compute of hash,and i want to do the comparsion between the tow algorithms as encryption methods. so the signing and verifying of data times between the tow algorithms will not be accurate.

and i noticed there are Encrypt(),Decrypt() methods in RSACryptoServiceProvider class but no such methods in ECDsa class,

so the question is :how can i use ECC as encryption method,like to encrypt a message by the public key and decrypt it by the private or encrypt it bey private and decrypt by public?

another question is :how can i use RSAcng class because i didn't find it in System.Security.Cryptography namespace,and i am using VS 2008. here is some info about this class in this link.

http://clrsecurity.codeplex.com/wikipage?title=Security.Cryptography.RSACng

link|flag
vote up 0 vote down

Hi caf, Thanks for the response.

I went thru the ecdhtest.c and understood the functionality. In my case, I am not sending the encrypted message to the receiver, instead, i will encrypt a message and put in a text file, embed the decryption key in the binary. When the binary is run, it will decrypt the message and use it.

Some how I am not able to come up with an solution of doing it using ECC ! !

link|flag
There's not much point in using ECC in this situation - you might as well just use AES and embed the AES key in the binary. – caf Sep 24 at 23:48
vote up 0 vote down

caf, Thanks for the reply. I am fine with the step that you have mentioned above. I can make use of AES to encrypt the message using a secret which is generated using ECDH.

Is there a sample program which does the above steps ? If so please point me to that. I tried a lot searching for such a sample program, but with no luck.

Thanks

link|flag
vote up 1 vote down

ECC itself doesn't really define any encryption/decryption operations - algorithms built on elliptic curves do.

One example is Elliptic-Curve Diffie-Hellman. You could encrypt a message using ECDH by:

  1. Generating an ephemeral EC key.
  2. Using that key and the public key of the recipient, generate a secret using ECDH.
  3. Use that secret as a key to encrypt the message with a symmetric cipher, like AES.
  4. Transmit the encrypted message and the ephemeral public key generated in step 1.

To decrypt:

  1. Load the ephemeral public key from the message.
  2. Use that public key together with your recipient key to generate a secret using ECDH.
  3. Use that secret as a key to decrypt the message with the symmetric cipher.

EDIT: The following is the basic idea to generate a secret using ECDH. First we need to define a key derivation function - this one uses the SHA1 hash.

void *KDF1_SHA1(const void *in, size_t inlen, void *out, size_t *outlen)
{
    if (*outlen < SHA_DIGEST_LENGTH)
        return NULL;
    else
        *outlen = SHA_DIGEST_LENGTH;
    return SHA1(in, inlen, out);
}

This is the ECDH code for the sender side. It assumes that the recipient's public key is already in "recip_key", and you have verified it with EC_KEY_check_key(). It also omits much important error checking, for the sake of brevity, which you will definitely want to include in production code.

EC_KEY *ephemeral_key = NULL;
const EC_GROUP *group = NULL;
unsigned char buf[SHA_DIGEST_LENGTH] = { 0 };

group = EC_KEY_get0_group(recip_key);
ephemeral_key = EC_KEY_new();
EC_KEY_set_group(ephemeral_key, group);

EC_KEY_generate_key(ephemeral_key);
ECDH_compute_key(buf, sizeof buf, EC_KEY_get0_public_key(recip_key), ephemeral_key, KDF1_SHA1);

After this the buffer 'buf' contains 20 bytes of material you can use for keying. This abbreviated example is based on the code in "ecdhtest.c" in the openssl source distribution - I suggest taking a look at it.

You will want to send the public key portion of ephemeral_key with the encrypted message, and securely discard the private key portion. A MAC over the data is also a good idea, and if you need more than 20 bytes of keying material a longer hash is probably in order.

The recipient does something similar, except that its private key already exists (since the sender had to know the corresponding public key beforehand), and the public key is recieved from the sender.

link|flag
caf, Thanks for the reply. I am fine with the step that you have mentioned above. I can make use of AES to encrypt the message using a secret which is generated using ECDH. Is there a sample program which does the above steps ? If so please point me to that. I tried a lot searching for such a sample program, but with no luck. Thanks – Sandeep Jul 24 at 10:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.