#nist #secp256r1 #prime256v1

no-std p256

Pure Rust implementation of the NIST P-256 (a.k.a. secp256r1, prime256v1) elliptic curve as defined in SP 800-186, with support for ECDH, ECDSA signing/verification, and general purpose curve arithmetic

31 releases

0.14.0-pre.0 Jan 19, 2024
0.13.2 Apr 15, 2023
0.13.0 Mar 3, 2023
0.12.0-pre.1 Dec 29, 2022
0.0.0 Oct 3, 2018

#378 in Cryptography

Download history 233535/week @ 2024-01-03 232107/week @ 2024-01-10 273596/week @ 2024-01-17 275647/week @ 2024-01-24 271679/week @ 2024-01-31 247519/week @ 2024-02-07 249366/week @ 2024-02-14 263215/week @ 2024-02-21 274828/week @ 2024-02-28 299972/week @ 2024-03-06 292706/week @ 2024-03-13 300791/week @ 2024-03-20 268038/week @ 2024-03-27 312132/week @ 2024-04-03 300962/week @ 2024-04-10 271239/week @ 2024-04-17

1,208,705 downloads per month
Used in 753 crates (176 directly)

Apache-2.0 OR MIT

165KB
3K SLoC

RustCrypto: NIST P-256 (secp256r1) elliptic curve

crate Docs Build Status Apache2/MIT licensed Rust Version Project Chat

Pure Rust implementation of the NIST P-256 (a.k.a. secp256r1, prime256v1) elliptic curve with support for ECDH, ECDSA signing/verification, and general purpose curve arithmetic support implemented in terms of traits from the elliptic-curve crate.

Documentation

⚠️ Security Warning

The elliptic curve arithmetic contained in this crate has never been independently audited!

This crate has been designed with the goal of ensuring that secret-dependent operations are performed in constant time (using the subtle crate and constant-time formulas). However, it has not been thoroughly assessed to ensure that generated assembly is constant time on common CPU architectures.

USE AT YOUR OWN RISK!

Supported Algorithms

About NIST P-256

NIST P-256 is a Weierstrass curve specified in SP 800-186: Recommendations for Discrete Logarithm-based Cryptography: Elliptic Curve Domain Parameters.

Also known as prime256v1 (ANSI X9.62) and secp256r1 (SECG), it's included in the US National Security Agency's "Suite B" and is widely used in protocols like TLS and the associated X.509 PKI.

Minimum Supported Rust Version

Rust 1.73 or higher.

Minimum supported Rust version can be changed in the future, but it will be done with a minor version bump.

SemVer Policy

  • All on-by-default features of this library are covered by SemVer
  • MSRV is considered exempt from SemVer as noted above

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.

Dependencies

~2–2.6MB
~57K SLoC