#ed448 #decaf #crypto

ed448-goldilocks

A pure-Rust implementation of Ed448 and Curve448 and Decaf

11 unstable releases

0.9.0 Mar 10, 2023
0.8.3 Jan 31, 2022
0.8.2 Feb 7, 2021
0.7.2 Feb 7, 2021
0.4.0 May 9, 2020

#463 in Cryptography

Download history 171/week @ 2023-11-20 176/week @ 2023-11-27 211/week @ 2023-12-04 163/week @ 2023-12-11 154/week @ 2023-12-18 88/week @ 2023-12-25 100/week @ 2024-01-01 205/week @ 2024-01-08 230/week @ 2024-01-15 189/week @ 2024-01-22 295/week @ 2024-01-29 196/week @ 2024-02-05 112/week @ 2024-02-12 224/week @ 2024-02-19 372/week @ 2024-02-26 353/week @ 2024-03-04

1,067 downloads per month
Used in 3 crates (2 directly)

BSD-3-Clause

240KB
3K SLoC

THIS CODE HAS NOT BEEN AUDITED OR REVIEWED. USE AT YOUR OWN RISK.

Field Choice

The field size is a Solinas trinomial prime 2^448 - 2^224 -1. This prime is called the Goldilocks prime.

Curves

This repository implements three curves explicitly and another curve implicitly.

The three explicitly implemented curves are:

  • Ed448-Goldilocks

  • Curve448

  • Twisted-Goldilocks

Ed448-Goldilocks Curve

  • The goldilocks curve is an Edwards curve with affine equation x^2 + y^2 = 1 - 39081x^2y^2 .
  • This curve was defined by Mike Hamburg in https://eprint.iacr.org/2015/625.pdf .
  • The cofactor of this curve over the goldilocks prime is 4.

Twisted-Goldilocks Curve

  • The twisted goldilocks curve is a Twisted Edwards curve with affine equation y^2 - x^2 = 1 - 39082x^2y^2 .
  • This curve is also defined in https://eprint.iacr.org/2015/625.pdf .
  • The cofactor of this curve over the goldilocks prime is 4.

Isogeny

Curve448

This curve is 2-isogenous to Ed448-Goldilocks. Details of Curve448 can be found here: https://tools.ietf.org/html/rfc7748

The main usage of this curve is for X448.

N.B. In that document there is an Edwards curve that is birationally equivalent to Curve448, with a large d value. This curve is not implemented and to my knowledge, has no utility.

Strategy

The main strategy for group arithmetic on Ed448-Goldilocks is to perform the 2-isogeny to map the point to the Twisted-Goldilocks curve, then use the faster Twisted Edwards formulas to perform scalar multiplication. Computing the 2-isogeny then the dual isogeny will pick up a factor of 4 once we map the point back to the Ed448-Goldilocks curve, so the scalar must be adjusted by a factor of 4. Adjusting the scalar is dependent on the point and the scalar. More details can be found in the 2-isogenous paper.

Decaf

The Decaf strategy [link paper] is used to build a group of prime order from the Twisted Goldilocks curve. The Twisted Goldilocks curve is used as it has faster formulas. We can also use Curve448 or Ed448-Goldilocks. Decaf takes advantage of an isogeny with a Jacobi Quartic curve which is not explicitly defined. Details of this can be found here: https://www.shiftleft.org/papers/decaf/decaf.pdf However, to my knowledge there is no documentation for the Decaf protocol implemented in this repository, which is a tweaked version of the original decaf protocol linked in the paper.

Completed Point vs Extensible Point

Deviating from Curve25519-Dalek, this library will implement Extensible points instead of Completed Points. Due to the following observation:

  • There is a cost of 3/4 Field multiplications to switch from the CompletedPoint. So if we were to perform repeated doubling, this would add an extra cost for each doubling in projective form. More details on the ExtensiblePoint can be found here [3.2]: https://www.shiftleft.org/papers/fff/fff.pdf

Credits

The library design was taken from Dalek's design of Curve25519. The code for Montgomery curve arithmetic was also taken from Dalek's library.

The golang implementation of Ed448 and libdecaf were used as references.

Special thanks to Mike Hamburg for answering all of the questions asked regarding Decaf and goldilocks.

Dependencies

~0.1–1.2MB
~24K SLoC