Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new elliptic curves & Implement ECDSA public key recovery from signature #11

Merged
merged 18 commits into from
Dec 29, 2023

Commits on Dec 17, 2023

  1. [Action] Update cdt version

    smlu committed Dec 17, 2023
    Configuration menu
    Copy the full SHA
    37bf0af View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2233e72 View commit details
    Browse the repository at this point in the history

Commits on Dec 19, 2023

  1. Configuration menu
    Copy the full SHA
    330f8a8 View commit details
    Browse the repository at this point in the history

Commits on Dec 20, 2023

  1. Configuration menu
    Copy the full SHA
    1120ae6 View commit details
    Browse the repository at this point in the history

Commits on Dec 21, 2023

  1. Add to_bytes method

    smlu committed Dec 21, 2023
    Configuration menu
    Copy the full SHA
    3311478 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1a365e6 View commit details
    Browse the repository at this point in the history

Commits on Dec 22, 2023

  1. Refactor make_point

    Added point type template argument.
    smlu committed Dec 22, 2023
    Configuration menu
    Copy the full SHA
    2ff9849 View commit details
    Browse the repository at this point in the history
  2. Add curve methods for computing y from x & encoding/decoding point

    Added new methods to `ec_point_fp`:
    -  compute_y: solves curve equation y^2 = x^3 + ax + b (mod p) and returns y
    -  decompress_point: same as  compute_y but returns point from x and computed y
    -  encode_point/decode_point: encodes/decodes point to/from bytes following SEC1-v2 2.3.3 specification
    smlu committed Dec 22, 2023
    Configuration menu
    Copy the full SHA
    b2a9db7 View commit details
    Browse the repository at this point in the history

Commits on Dec 23, 2023

  1. Add new elliptic curves

    Define new elliptic curves: brainpoolP256r1, brainpoolP320r1, brainpoolP384r1, brainpoolP512r1, secp384r1 & secp521r1
    smlu committed Dec 23, 2023
    Configuration menu
    Copy the full SHA
    03c8e50 View commit details
    Browse the repository at this point in the history
  2. Add ECDSA public key recovery

    Added algorithm for recovering public key from ECDSA signature.
    smlu committed Dec 23, 2023
    Configuration menu
    Copy the full SHA
    7991a67 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5b4d0d7 View commit details
    Browse the repository at this point in the history

Commits on Dec 28, 2023

  1. Update GitHub Actions && Increase CTest timeout

    Changed github action OS to Ubuntu to 22.04.
    Increased CTest timeout to 50 minutes for the `ack_ecc_tests` test.
    smlu committed Dec 28, 2023
    Configuration menu
    Copy the full SHA
    996194a View commit details
    Browse the repository at this point in the history

Commits on Dec 29, 2023

  1. Configuration menu
    Copy the full SHA
    098276c View commit details
    Browse the repository at this point in the history
  2. Fix vla size

    smlu committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    31d35ae View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    80ad5cd View commit details
    Browse the repository at this point in the history
  4. Fix flexbuffer copy/assignment & clear method

    Fixed freeing and deep copying `ddata_` from rhs, and fixed `clear` method to free `ddata_`.
    smlu committed Dec 29, 2023
    Configuration menu
    Copy the full SHA
    4cdabc0 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    f935459 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    03c84aa View commit details
    Browse the repository at this point in the history