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 !
|
|
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!!! |
||
|
|
|
|
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 |
||
|
|
|
|
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 |
||
|
|
|
|
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 ! ! |
|||
|
|
|
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 |
||
|
|
|
|
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:
To decrypt:
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.
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.
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. |
|||
|
