Elliptic-Curve

Elliptic-Curve Cryptography

In mathematics, an elliptic curve is a plane algebraic curve defined by an equation of the form. which is non-singular; that is, the curve has no cusps or self-intersections. Elliptical curve cryptography (ECC) is a public key encryption technique based on elliptic curve theory that can be used to create faster, smaller, and more efficient cryptographic keys. ECC generates keys through the properties of the elliptic curve equation instead of the traditional method of generation as the product of very large prime numbers. Elliptic Curve Graph Point Addition A straight line on the elliptic curve y² = x³ + ax + b intersects three times, each point of intersection is called P, Q and -R. P and Q can be used to find R, which is a reflection of point -R over the x axis. First the gradient (m) of the line is needed.

m = (yP - yQ) / (xP - xQ)
The gradient can then be used to find the x and y coordinates for R.
xR = m² - (xP + xQ) yR = m(xP - xQ) - yp
Scalar Multiplication However when R = 2P, the formulae change, and m is now the gradient of the tangent of P.
m = (3xP² + a) / 2yP x2P = m² - 2xP y2P = m(xP - x2P) - yp
To find 3P you would need to first calculate 2P and then point addition for P + 2P. To find 4P you would calculate 2P, and the 4P which is 2(2P). To find 5P you would need to first calculate 2P, then 4P and then 5P = 4P + P. You must remember these concepts to understand the Elliptic Curve Diffie Hellman Key Exchange. Key Generation Alice and Bob will agree on a, b and p (the modulus) to define their curve; note 4a³ + 27b ≠ 0. Alice and Bob then agree on the Generator point G which they will use to find their private keys. n is identified, where nG = (∞,∞), this is where x(n-1)G = xG. If for example 10G = G and 10 < n, then there are only 10 points on the curve. h is defined as h = number of points on the curve / n. All of the previously mentioned values are public and any interceptor can view these without knowing Alice and Bob’s secret key. Alice and Bob pick private keys α and β only accessible to themselves. Alice and Bob do not know each other's private keys. Alice and Bob can then exchange their public keys on an insecure channel, which are found using the following formulae:
Alice’s: A = αG Bob’s: B = βG
Alice and Bob can then find their shared secret key without knowing each other’s private keys using this formula:
Alice calculates: K = αB Bob calculates: K = βA K = (αβ mod n)G
Example: Let a = 2, b = 2, p = 17, G = (5, 1) n = 19, h = 1. Alice chooses her private key α = 3 and calculates her private key A which equals 3G. Step 1: m = (3xG2 + a) / 2yG mod p = (3(5)2 + 2)/(2 * 1) mod 17 = 77 / 2 mod 17 [Use the Extended Euclidean Algorithm here] = 77 * 9 mod 17 = 13 x2G = m2 - 2xG mod p = 132 - 2*5 mod 17 = 159 mod 17 = 6 y2G = m(xG - x2G ) - yG mod p = 13(5 - 6) - 1 mod 17 = -14 mod 17 = 3 2G = (6, 3) Step 2: P = 2G, Q = G m = (y2G - yG) / (x2G - xG) mod p = (3 - 1) / (6 - 5) mod 17 = 2 * 1 = 2 x3G = m2 - (x2G + xG) mod p = 22 - (6 + 5) mod 17 = 4 - 11 mod 17 = 10 y3G = m(x2G - xG) - y2G mod p = 2(6 - 5) - 3 mod 17 = 2 - 3 mod 17 = 16 3G = (10, 6) Written by Chelsea