Giter Site home page Giter Site logo

fionn / batch-gcd Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 11 KB

DJB's batch GCD algorithm for fast factoring sequences of integers

Home Page: https://pypi.org/project/batch-gcd/

Makefile 23.76% Python 76.24%
batch-gcd factoring-algorithms integer-factorization number-theory cryptanalysis

batch-gcd's Introduction

Batch GCD

Overview

A pure Python implementation of DJB's Batch GCD algorithm.

Installation

Download and install with pip.

Or, download from source and install with make install (standard, user) or make install_dev (editable, system).

Usage

This is a library and cannot be invoked directly.

Test with make test.

The batch_gcd module exposes a batch_gcd function which takes integers and returns a list of their GCDs at the corresponding index.

>>> # Example batch_gcd usage
>>> from batch_gcd import batch_gcd
>>> batch_gcd(1909, 2923, 291, 205, 989, 62, 451, 1943, 1079, 2419)
[1909, 1, 1, 41, 23, 1, 41, 1, 83, 41]

This calculation involves two intermediate steps: creating a product tree and creating a remainder tree. These functions are also exposed, as products and remainders. products take integers and returns a product tree, remainders takes an integer and a product tree and returns a list of remainders.

Resources

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.