👩‍🏫Introduction to ECC

Elliptic Curve Cryptography

  1. Public-key cryptography based on the concept of elliptic curves over finite fields.

  2. Smaller key size, relative to RSA.

    • My PGP software uses a 2048-bit RSA (Rivest–Shamir–Adleman) key.

      • To crack my PGP key, an attacker needs to expend the same amount of energy as bringing the Mediterranean sea to boil.

    • A typical crypto wallet uses a 256-bit ECC key.

      • To crack my this key, an attacker needs to expend the same amount of energy as bringing all the water on Earth to boil.

    • ECC offers 400 times more security with a key that is 8 times smaller.

      • Schematically, with the current knowledge.

      • Difficulty increases with larger curves.

  3. Widely used for digital-signatures and key-exchange.

    • Secures HTTPs connections (on modern browsers).

      • google.com uses the elliptic curve secp256r1, with key-size of 256 bits.

      • x.com uses RSA, with key-size of 2048 bits.

    • Bitcoin.

  4. Military-grade technology ®

    • Cryptography was once part of the United State Munitions List (USML).

Elliptic Curves

The above general equation is only for a particular family of elliptic curves called Weierstrass curves. There are several other forms that are also elliptic, but outside the scope of our study.

Turtle curve is used in Bitcoin, Ethereum, and Zcash. Starfish curve is used in Tendermint, Stellar, and Monero.

The figures above present elliptic curves over real numbers Field (R). This is convenient to get a visual understanding of what an elliptic curve is, mathematically speaking. For several reasons, the elliptic curves used in the case of ECC are defined over Finite Fields. The figure below is a more accurate representation of the elliptic curve actually used for ECC.

For an elliptic curve to be used for meaningful cryptography, they should also have the following two properties:

  1. Projective → a line between two points will always intersect a third point.

Why Python?

  • Supports 256-bit integer math.

    • Python simply regards everything as an unbounded number.

  • Allows easy modular exponentiation.

  • Easy to read.

    • Cryptographic algorithms should be secure even if the attacker can read them. Security should not be by obscurity.

    • Good language to write reference implementations in. Ethereum's reference implementation is written in Python.

  • Expressive.

    • Thanks to Python's magic methods, we can express finite field math using ordinary mathematical operators.

Resources

Last updated