#bignum #arbitrary-precision #cryptography #big-int #integerarithmetic

aloe-bigint

Aloe BigInt is a Rust library for arbitrary precision integer arithmetic. It supports standard arithmetic operations, bitwise manipulation, modular arithmetic, and provides functionalities for applications needing large integer support. This crate is a translation of the c++ juce module serving the same function.

2 releases

Uses new Rust 2024

new 0.1.1 Apr 2, 2025
0.1.0 Apr 2, 2025

#24 in #bigint

Download history 85/week @ 2025-03-28

85 downloads per month
Used in 119 crates (19 directly)

GPL-3.0 license

270KB
2K SLoC

Aloe BigInt

Overview

Aloe BigInt is a Rust library that provides an arbitrarily large integer class, BigInteger, allowing for mathematical computations beyond the bounds of traditional integer types. The class supports standard integer operations, bit-wise manipulations, and features such as GCD computation and modular arithmetic.

Technical Details

The BigInteger struct handles large numbers not constrained by bit width, aside from memory and performance limitations. Negative values are supported, although the underlying representation does not use 2's complement.

Key Features

  • Arbitrary Precision Arithmetic: Perform arithmetic with numbers of any size, leveraging memory allocation for extended precision.
  • Bit-wise Operations: Includes bit manipulation methods such as shifting, bit-wise AND, OR, XOR, and specific bit-set functionality.
  • Modular Arithmetic: Supports operations like exponentiation modulo and inverse modulo, essential for cryptographic calculations.
  • Extended Euclidean Algorithm: Computes GCD and aids in modular inversion calculations.

Usage

To use Aloe BigInt, include the following in your Cargo.toml:

[dependencies]
aloe-bigint = "0.1.0"

Examples

use aloe_bigint::BigInteger;

// Creating a BigInteger instance
tlet mut big1 = BigInteger::new_from_i32(123);
let big2 = BigInteger::new_from_u32(456);

// Arithmetic operations
big1 += &big2;
big1 *= big2;

// Modular arithmetic
big1.exponent_modulo(&big2, &BigInteger::new_from_u32(789));

// Display the result
println!("Result: {}", big1);

License

Aloe BigInt is licensed under the GPL-3.0.

Contributions

The project is maintained at GitHub by Klebs. Contributions and bug reports are welcome.

This README.md file was generated by an AI model and may not be 100% accurate, however, it should be pretty good.

This crate is a translation of the JUCE module.

JUCE is a c++ software framework for developing high performance audio applications.

Usage falls under the GPLv3 as well as the JUCE commercial license.

See github.com/juce-framework/JUCE and the JUCE license page for details.

This crate is in the process of being translated from c++ to rust. For progress updates, please see the workspacer rust project. designed specifically for rust projects.

Dependencies

~12–26MB
~358K SLoC