
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
passagemath-libecm
Advanced tools
passagemath <https://github.com/passagemath/passagemath>__ is open
source mathematical software in Python, released under the GNU General
Public Licence GPLv2+.
It is a fork of SageMath <https://www.sagemath.org/>__, which has been
developed 2005-2025 under the motto “Creating a Viable Open Source
Alternative to Magma, Maple, Mathematica, and MATLAB”.
The passagemath fork uses the motto "Creating a Free Passage Between the Scientific Python Ecosystem and Mathematical Software Communities." It was created in October 2024 with the following goals:
clear attribution of upstream projects <https://groups.google.com/g/sage-devel/c/6HO1HEtL1Fs/m/G002rPGpAAAJ>__,platform portability and integration testing services <https://github.com/passagemath/passagemath/issues/704>__
to upstream projects,building a professional, respectful, inclusive community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>__,empowering Sage users to participate in the scientific Python ecosystem <https://github.com/passagemath/passagemath/issues/248>__ by publishing packages,Pyodide <https://pyodide.org/en/stable/>__ for
serverless deployment with Javascript,Full documentation <https://passagemath.org/docs/latest/html/en/index.html>__ is
available online.
passagemath attempts to support and provides binary wheels suitable for all major Linux distributions and recent versions of macOS.
Binary wheels for native Windows (x86_64) are are available for a subset of the passagemath distributions. Use of the full functionality of passagemath on Windows currently requires the use of Windows Subsystem for Linux (WSL) or virtualization.
The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.14.x.
This pip-installable package passagemath-libecm provides
interfaces to GMP-ECM <https://gitlab.inria.fr/zimmerma/ecm>_, the implementation
of the Elliptic Curve Method for integer factorization.
Python interface to the ECM program <https://passagemath.org/docs/latest/html/en/reference/interfaces/sage/interfaces/ecm.html#module-sage.interfaces.ecm>_
Cython interface to the libecm library <https://passagemath.org/docs/latest/html/en/reference/libs/sage/libs/libecm.html#module-sage.libs.libecm>_
The binary wheels published on PyPI include a prebuilt copy of GMP-ECM (executable and library).
::
$ pipx run --pip-args="--prefer-binary" --spec "passagemath-libecm[test]" ipython
In [1]: from sage.libs.libecm import ecmfactor
In [2]: N = 11 * 43570062353753446053455610056679740005056966111842089407838902783209959981593077811330507328327968191581
In [3]: ecmfactor(N, 100, verbose=True)
Performing one curve with B1=100
Found factor in step 1: 11
Out[3]: (True, 11, ...)
In [4]: ecmfactor(N//11, 100, verbose=True)
Performing one curve with B1=100
Found no factor.
Out[4]: (False, None)
pip install passagemath-libecm[pari] additionally makes PARI available (for primality testing)
FAQs
passagemath: Elliptic curve method for integer factorization using GMP-ECM
We found that passagemath-libecm demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.