- ECDSA is a digital signature algorithm
- ECIES is an Integrated Encryption scheme
- ECDH is a key secure key exchange algorithm
First you should understand the purpose of these algorithms.
Digital signature algorithms are used to authenticate a digital content. A valid digital signature gives a recipient reason to believe that the message was created by a known sender, such that the sender cannot deny having sent the message (authentication and non-repudiation) and that the message was not altered in transit (integrity).
Integrated Encryption scheme is a hybrid encryption scheme which provides semantic security against chosen plain text and chosen cipher text attacks. ECIES uses different types of functions:
- Key Agreement function
- Key Derivation Function
- Symmetric Encryption scheme
- Hash function
Secure key exchange algorithms are used to exchange our keys securely via a non secure channel.
Here you are interested in Elliptic Curve variants of those algorithms. Your requirement is to exchange some data. So you can use ECDH to share the secret key and ECDSA to sign the content. Because ECDH does not provide authentication we can use ECDSA for that purpose. Once the secret key is shared, you can securely exchange your data through a non secure channel. Strength of the secret key can be defined by considering the level of security you need and amount of computation power you got.
http://crypto.stackexchange.com/questions/12823/ecdsa-vs-ecies-vs-ecdh
댓글 없음:
댓글 쓰기