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

bigint: Provide a fallback implementation for bn_mul_mont. #1558

Merged
merged 4 commits into from
Nov 14, 2022

Commits on Nov 11, 2022

  1. Configuration menu
    Copy the full SHA
    0121a80 View commit details
    Browse the repository at this point in the history
  2. bigint: Provide a fallback implementation for bn_mul_mont.

    Provide an implementation of `bn_mul_mont` that works on all targets that
    don't have an assembly language implementation.
    
    Expand `prefixed_export!` to support prefixing functions defined in Rust.
    Function definitions don't end with a semicolon so move the semicolon
    insertion from `prefixed_item!` to its callers.
    
    Unify the codepaths in `bigint` so that `bn_mul_mont` is always used.
    briansmith committed Nov 11, 2022
    Configuration menu
    Copy the full SHA
    81f4e8d View commit details
    Browse the repository at this point in the history
  3. Add mipsel to Github Actions CI setup

    LinusU authored and briansmith committed Nov 11, 2022
    Configuration menu
    Copy the full SHA
    ce24e18 View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2022

  1. Adjust MIPSEL CI build system changes.

    Take MIPSEL out of the GitHub Actions configuration because it fails to
    link, and because it makes the build matrix too large.
    briansmith committed Nov 12, 2022
    Configuration menu
    Copy the full SHA
    54520a3 View commit details
    Browse the repository at this point in the history