Elliptic Curve Cryptography

From Elvis Wiki
Revision as of 11:05, 21 February 2019 by Mtausig (talk | contribs) (Add references section; Remove Todo (cite extension))

Summary

This documentary gives a brief introduction into elliptic curve cryptography

Elliptic Curve Cryptography

Elliptic curve cryptography is a part of asymmetric cryptography, it is based on the mathematical hard problem to find a solution for the elliptic curve discrete logarithm. The calculations are performed on the algebraic structure of elliptic curves over finite fields, which means we compute points on a elliptic curve over finite field by applying the group operations double and add.

The scalar multiplication of a point on an elliptic curve over a finite field is equivalent to the exponentation of a number in a prime field, therefore the inversion is also called discrete logarithm.


First proposed application of elliptic curves in cryptography was random number generations, now ECC is widely used for key establishment and digital signature schemes.


Simple Weierstrass Elliptic Curve Presentation

  • Simple Weierstrass form curve equation:

TODO need to install math extension: https://www.mediawiki.org/wiki/Extension:Math/advancedSettings#Installing_texvc <math>y² = x³ + ax + b</math> The elliptic curve are all points in the x,y coordinates which fulfill the cubic curve equation, whereas a and b are called the characteristic of the curve. The curve needs to be smooth, which means that it will not contain any singularities such as a cusp or a self intersection,

This can be also described by the term: <math>4a^3 + 27b^2 \neq 0</math>

Another characteristic we need to introduce is the point at infinity denoted by 0 (also known as ideal point), which can be thought as identity element infinitly raised on the y axis. Therefore our points on the elliptic curve over R² all fulfill this equation <math>\{(x,y)∈R2 | y2=x3+ax+b, 4a3+27b2≠0\} \cup \{0\}</math> and can be presented by:


A point consists of 2 values P(x,y).

Group operations on elliptic curves

According to the group law all points support following operations:

  • Point addition: <math> P+Q=R</math>
  • Point doubling: <math> P=Q - 2P=R<\math

TODO:Need to install link target extension: https://www.mediawiki.org/wiki/Extension:LinkTarget Test: https://cdn.rawgit.com/andreacorbellini/ecc/920b29a/interactive/reals-add.html

Geometric derivation of the point addition by the Tangent Chord Law

[1]

Given the elliptic curve <math>E:y^2=x^3+ax+b</math> and the points <math>P=(x_1,y_1)</math> and <math>Q=(x_2,y_2)</math>, we can caculate the coordinates of the point <math>R=P+Q=(x_3,y_3)</math> as follows. 1. Calculation of <math>y_3</math>

  • We know the equation from the line

<math>y=kx+d \qquad \text{concising of} \qquad k=\frac{\Delta y}{\Delta x}</math>

  • Therfore

<math>k=\frac{y_2-y_1}{x_2-x_1}</math> and we can find the intersection with the y-axis and achieve d <math> d=y_1-kx_1=\frac{y_1\cdot x_2-y_1 \cdot x_1-y_2 \cdot x_1 +y_1 \cdot x_1}{x_2-x_1}=\frac{y_1 \cdot x_2-y_2 \cdot x_1}{x_2-x_1}</math>.

  • <math>y_3</math> we can find by insertion in the line equation:

<math>y_3=(-1)\bigg( \frac{y_2-y_1}{x_2-x_1}\cdot x_3 + y_1 - \frac{y_2-y_1}{x_2-x_1}\cdot x_1 \bigg)=\bigg(\frac{y_2-y_1}{x_2-x_1}\bigg)(x_1-x_3)-y_1</math>

2. Calculation of <math>x_3</math>

  • Now we insert the values of the line equation into the elliptic curve equation:

<math>\begin{aligned} (k \cdot x+d)^2 &=x^3+a \cdot x+b\\ k^2x^2+2k \cdot x\cdot d+d^2&=x^3+a \cdot x +b\\ x^3-x^2k^2+x(a-2k \cdot d)+b-d^2 &=0 \end{aligned}</math>

  • The cross points can be searched by

<math>\begin{aligned} (x-x_1)\cdot(x-x_2)\cdot(x-x_3)&=0\\ (x^2-x \cdot x_2 - x \cdot x_1 +x_1 \cdot x_2) \cdot(x-x_3)&=0\\ x^3-x^2 \cdot x_2-x^2 \cdot x_1 + x \cdot x_1 x_2 - x^2 \cdot x_3 + x \cdot x_2 x_3 + x \cdot x_1x_3-x_1x_2x_3 &=0\\ x^3 - x^2 (x_1+x_2+x_3) + x(x_1x_2+x_2x_3+x_1x_3)+x_1x_2x_3 &=0 \end{aligned}</math>

  • Now we can conclude from the second term

<math>\begin{aligned} x^3-x^2 \underline {k^2}+x(a-2k \cdot d)+b-d^2 &=0\\ x^3 - x^2 \underline {(x_1+x_2+x_3)} + x(x_1x_2+x_2x_3+x_1x_3)+x_1x_2x_3 &=0\\ k^2 &=x_1+x_2+x_3 \end{aligned}</math>

  • and achieve a solution for <math>x_3</math> by:

<math>x_3=k^2-x_1-x_2 =\bigg(\frac{y_2-y_1}{x_2-x_1}\bigg)^2-x_1-x_2</math>

Algebraic group of points

The points further comply associative and commutative algebraic group laws and the handling of the neutral element:

    • closure: <math>P+Q=R \forall P,Q,R \in E<\math>b
    • associative: <math>P+0=0+P \forall P \in E<\math>
    • identity element and inverse that: <math>P+(-P) = 0 \forall P \in E<\math>
    • cummutative: <math>P+(Q+R)=(P+Q)+R \forall P,Q,R \in E<\math>

The inverse point of a point P(x,y) is therfore P(x,-y).

Scalar Multiplication

Double and Add algorithm

Calculation in projective coordinates

Side Channel Attacks

Montgomery ladder

Standardization of elliptic curves

Curve25519

Curve25519 is a highly optimized curve proposed by Daniel J. Bernstein (djb) in 2005. The curve equation is <math>y^2=x^3+486662x^2+x<\math> over a prime field <math>2^{255}-19</math>

Edward curves

Applications Example Elliptic curve Diffie Hellman key exchange

References

  1. Hankerson, D., A. Menezes and S. Vanstome: Guide to Elliptic Curve Cryptographie. Springer Verlag New York, Inc., 1. Auflage, 2004.