https://github.com/brycx/rust-p384
p384 crate with an actual implementation.
https://github.com/brycx/rust-p384
Last synced: about 1 month ago
JSON representation
p384 crate with an actual implementation.
- Host: GitHub
- URL: https://github.com/brycx/rust-p384
- Owner: brycx
- License: apache-2.0
- Created: 2022-05-17T10:33:55.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-05-26T12:45:40.000Z (almost 3 years ago)
- Last Synced: 2025-01-30T19:55:47.500Z (3 months ago)
- Language: Rust
- Homepage:
- Size: 181 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# RustCrypto: NIST P-384 (secp384r1) elliptic curve
[![crate][crate-image]][crate-link]
[![Docs][docs-image]][docs-link]
![Apache2/MIT licensed][license-image]NIST P-384 elliptic curve (a.k.a. secp384r1) types implemented in terms of
traits from the [`elliptic-curve`] crate.[Documentation][docs-link]
## About P-384
NIST P-384 is a Weierstrass curve specified in FIPS 186-4: Digital Signature
Standard (DSS):Also known as secp384r1 (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.57** 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
* [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0)
* [MIT license](http://opensource.org/licenses/MIT)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.[//]: # (badges)
[crate-image]: https://img.shields.io/crates/v/p384_rs.svg
[crate-link]: https://crates.io/crates/p384_rs
[docs-image]: https://docs.rs/p384_rs/badge.svg
[docs-link]: https://docs.rs/p384_rs/
[license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg
[rustc-image]: https://img.shields.io/badge/rustc-1.57+-blue.svg[//]: # (general links)
[`elliptic-curve`]: https://github.com/RustCrypto/traits/tree/master/elliptic-curve