#curve #elliptic-curve #version #milagro #support #different

miracl_amcl

The Apache Milagro Cryptographic Library (version 3.2)

5 stable releases

Uses old Rust 2015

3.2.5 Jul 23, 2019
3.2.4 Jul 19, 2019
3.2.2 Jun 23, 2019
3.2.1 Jun 22, 2019
3.2.0 Jun 18, 2019

#1300 in Cryptography

Download history 120/week @ 2023-11-20 203/week @ 2023-11-27 150/week @ 2023-12-04 171/week @ 2023-12-11 121/week @ 2023-12-18 40/week @ 2023-12-25 95/week @ 2024-01-01 129/week @ 2024-01-08 108/week @ 2024-01-15 54/week @ 2024-01-22 91/week @ 2024-01-29 106/week @ 2024-02-05 138/week @ 2024-02-12 106/week @ 2024-02-19 94/week @ 2024-02-26 144/week @ 2024-03-04

499 downloads per month

Apache-2.0

1MB
27K SLoC

NOTE: Updated to Rust 2018

NOTE: This version of the library requires Version 1.31+ of Rust for 64-bit integer support and for Rust 2018.

Now AMCL version 3 is distributed as a cargo crate.

Namespaces are used to separate different curves.

To build the library and see it in action, copy all of the files in this directory and its subdirectories to a fresh root directory.

Then for example execute

cargo rustc --release --features "bn254 bls383 bls24 bls48 ed25519 nist256 goldilocks rsa2048"

This will create a build of the library for the current default target (be it 32 or 64 bits).

(To test a 32-bit environment you can follow the Web Assembly (wasm) readme instructions for rust)

Next copy the library from target/release/libamcl.rlib into the root directory and execute

rustc TestALL.rs --extern amcl=libamcl.rlib

rustc TestBLS.rs --extern amcl=libamcl.rlib

rustc BenchtestALL.rs --extern amcl=libamcl.rlib

rustc TestNHS.rs --extern amcl=libamcl.rlib

Finally execute these programs.

To add amcl functionality to your own programs, add a dependency to your Cargo.toml file. For example to use the curve bls48, add this dependency

[dependencies]

amcl = { version = "0.2.0", optional = true, default-features = false, features = ["bls48"]}

if published to crates.io, or

amcl = { version = "0.2.0", optional = true, default-features = false, features = ["bls48"], path="your_amcl_location" }

And to use primitives of the needed curve in your source code:

use amcl::bls48::{ECP, ECP8}; //any primitive you need

Full list of features:

  • Elliptic Curves

    • ed25519
    • c25519
    • nist256
    • brainpool
    • anssi
    • hifive
    • goldilocks
    • nist384
    • c41417
    • nist521
    • nums256w
    • nums256e
    • nums384w
    • nums384e
    • nums512w
    • nums512e
    • secp256k1
  • Pairing-Friendly Elliptic Curves

    • bn254
    • bn254CX
    • bls383
    • bls381
    • fp256BN
    • fp512BN
    • bls461
    • bls24
    • bls48
  • RSA

    • rsa2048
    • rsa3072
    • rsa4096

No runtime deps

Features