Description
General purpose Elliptic Curve Cryptography (ECC) support, including types
and traits for representing various elliptic curve forms, scalars, points,
and public/secret keys composed thereof.
All curves reside in the separate crates and implemented using traits from
the elliptic-curve crate. Additionally all
crates do not require the standard library (i.e. no_std capable) and can be
easily used for bare-metal or WebAssembly programming.
RustCrypto Elliptic Curves alternatives and similar packages
Based on the "Cryptography" category.
Alternatively, view RustCrypto Elliptic Curves alternatives based on common mentions on social networks and blogs.
-
Ockam
Build secure-by-design applications that can Trust Data-in-Motion. Orchestrate end-to-end encryption, mutual authentication, key management, credential management & authorization policy enforcement โ at scale. -
exonum
An extensible open-source framework for creating private/permissioned blockchain applications -
rust-crypto
A (mostly) pure-Rust implementation of various cryptographic algorithms. -
curve25519-dalek
A pure-Rust implementation of group operations on Ristretto and Curve25519 -
ed25519-dalek
Fast and efficient ed25519 signing and verification in Rust. -
sodiumoxide
[DEPRECATED] Sodium Oxide: Fast cryptographic library for Rust (bindings to libsodium) -
miscreant
Meta-repository for Miscreant: misuse-resistant symmetric encryption library with AES-SIV (RFC 5297) and AES-PMAC-SIV support -
rust-native-tls
Bindings for native TLS libraries -
RustCrypto
Authenticated Encryption with Associated Data Algorithms: high-level encryption ciphers -
orion
Usable, easy and safe pure-Rust crypto [Moved to: https://github.com/orion-rs/orion] -
rust-security-framework
Bindings to the macOS Security.framework -
recrypt
A set of cryptographic primitives for building a multi-hop Proxy Re-encryption scheme, known as Transform Encryption. -
octavo
Highly modular & configurable hash & crypto library -
Roughenough
A Roughtime secure time sync client and server written in Rust -
schannel-rs
Schannel API-bindings for rust (provides an interface for native SSL/TLS using windows APIs) -
rust-djangohashers
A Rust port of the password primitives used in Django Project. -
libblockchain
A Blockchain implementation in Rust -
rustotpony
๐ด RusTOTPony โ CLI manager of one-time password generators aka Google Authenticator -
rncryptor-rs
Pure Rust implementation of the RNCryptor cryptographic format by Rob Napier
Access the most powerful time series database as a service
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of RustCrypto Elliptic Curves or a related project?
README
RustCrypto: Elliptic Curves

General purpose Elliptic Curve Cryptography (ECC) support, including types and traits for representing various elliptic curve forms, scalars, points, and public/secret keys composed thereof.
All curves reside in the separate crates and implemented using traits from
the elliptic-curve
crate.
Crates in this repo do not require the standard library (i.e. no_std
capable)
and can be easily used for bare-metal or WebAssembly programming.
Crates
Name | Curve | arithmetic ? |
Crates.io | Documentation | Build Status |
---|---|---|---|---|---|
bp256 |
brainpoolP256r1/t1 | ๐ซ | |||
bp384 |
brainpoolP384r1/t1 | ๐ซ | |||
k256 |
secp256k1 | โ | |||
p256 |
NIST P-256 | โ | |||
p384 |
NIST P-384 | โ | |||
p521 |
NIST P-521 | ๐ง |
NOTE: Some crates contain field/point arithmetic implementations gated under the
arithmetic
cargo feature as noted above.
Please see our tracking issue for additional elliptic curves if you are interested in curves beyond the ones listed here.
Minimum Supported Rust Version
All crates in this repository support Rust 1.57 or higher.
Minimum supported Rust version can be changed in the future, but it will be done with a minor version bump.
License
All crates licensed under either of
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
*Note that all licence references and agreements mentioned in the RustCrypto Elliptic Curves README section above
are relevant to that project's source code only.