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

fix: fixed reduction parameter error #31

Merged
merged 5 commits into from
Oct 10, 2024
Merged

Commits on Oct 9, 2024

  1. fixed reduction parameter error

    redc_param previously was only large enough to cover barrett reductions whose input was < 2^{modulus_bits * 2 + 2}
    
    this was insufficient for elliptic curve arithmetic in bignum
    
    redc_param is now large enough to cover barrett reduction inputs of at least 16 * modulus^2
    
    additonally, library upgraded to not trigger compiler warnings for nargo 0.35.0
    zac-williamson committed Oct 9, 2024
    Configuration menu
    Copy the full SHA
    53f7420 View commit details
    Browse the repository at this point in the history
  2. format

    zac-williamson committed Oct 9, 2024
    Configuration menu
    Copy the full SHA
    2269dea View commit details
    Browse the repository at this point in the history
  3. Update src/runtime_bignum_test.nr

    Co-authored-by: Maxim Vezenov <[email protected]>
    TomAFrench and vezenovm authored Oct 9, 2024
    Configuration menu
    Copy the full SHA
    15683dc View commit details
    Browse the repository at this point in the history
  4. Update src/runtime_bignum_test.nr

    Co-authored-by: Maxim Vezenov <[email protected]>
    TomAFrench and vezenovm authored Oct 9, 2024
    Configuration menu
    Copy the full SHA
    26ccd61 View commit details
    Browse the repository at this point in the history
  5. Update src/runtime_bignum_test.nr

    Co-authored-by: Maxim Vezenov <[email protected]>
    TomAFrench and vezenovm authored Oct 9, 2024
    Configuration menu
    Copy the full SHA
    ba327f6 View commit details
    Browse the repository at this point in the history