diff options
Diffstat (limited to 'vendor/orion/README.md')
-rw-r--r-- | vendor/orion/README.md | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/vendor/orion/README.md b/vendor/orion/README.md new file mode 100644 index 0000000..cfc9fe8 --- /dev/null +++ b/vendor/orion/README.md @@ -0,0 +1,72 @@ +# orion +[![Tests](https://github.com/orion-rs/orion/workflows/Tests/badge.svg)](https://github.com/orion-rs/orion/actions) [![Daily tests](https://github.com/orion-rs/orion/workflows/Daily%20tests/badge.svg)](https://github.com/orion-rs/orion/actions) [![dudect](https://github.com/orion-rs/orion-dudect/workflows/dudect/badge.svg)](https://github.com/orion-rs/orion-dudect/actions) [![Audit](https://github.com/orion-rs/orion/actions/workflows/audit_check.yml/badge.svg)](https://github.com/orion-rs/orion/actions/workflows/audit_check.yml) [![codecov](https://codecov.io/gh/orion-rs/orion/branch/master/graph/badge.svg)](https://codecov.io/gh/orion-rs/orion) [![Documentation](https://docs.rs/orion/badge.svg)](https://docs.rs/orion/) [![Crates.io](https://img.shields.io/crates/v/orion.svg)](https://crates.io/crates/orion) [![Safety Dance](https://img.shields.io/badge/unsafe-forbidden-success.svg)](https://github.com/rust-secure-code/safety-dance/) [![MSRV](https://img.shields.io/badge/MSRV-1.70-informational.svg)](https://img.shields.io/badge/MSRV-1.70-informational) [![Matrix](https://img.shields.io/matrix/orion-rs:matrix.org.svg?logo=matrix)](https://matrix.to/#/#orion-rs:matrix.org) + +### About +Orion is a cryptography library written in pure Rust. It aims to provide easy and usable crypto while trying to minimize the use of unsafe code. You can read more about Orion in the [wiki](https://github.com/orion-rs/orion/wiki). + +Currently supports: +* **AEAD**: (X)ChaCha20-Poly1305. +* **Hashing**: BLAKE2b, SHA2, SHA3. +* **KDF**: HKDF, PBKDF2, Argon2i. +* **Key exchange**: X25519. +* **MAC**: HMAC, Poly1305. +* **Stream ciphers**: (X)ChaCha20. +* **KEM**: DHKEM(X25519, HKDF-SHA256). + +Experimental support (with `experimental` feature enabled): +* **Committing AEAD**: (X)ChaCha20-Poly1305-BLAKE2b. + +### Security +This library has **not undergone any third-party security audit**. Usage is at **own risk**. + +Orion uses formally verified arithmetic, generated by Fiat Crypto, for the X25519 and Poly1305 implementations. + +See the [SECURITY.md](https://github.com/orion-rs/orion/blob/master/SECURITY.md) regarding recommendations on correct use, reporting security issues and more. Additional information about security regarding Orion is available in the [wiki](https://github.com/orion-rs/orion/wiki/Security). + +### Minimum Supported Rust Version +Rust 1.70 or later is supported however, the majority of testing happens with latest stable Rust. + +MSRV may be changed at any point and will not be considered a SemVer breaking change. + +### Crate Features + +- `default`/`safe_api`: All functionality, requires `std`. +- `serde`: Requires either `alloc` or `default`/`safe_api`. +- `alloc`: Argon2i in `hazardous` when `default`/`safe_api` is not available. +- `no_std`: Implicit feature that represents no heap allocations. Enabled by disabling default features and not selecting any additional features. +- `experimental`: These APIs may contain breaking changes in any non SemVer-breaking crate releases. + +More detailed explanation of the features in the [wiki](https://github.com/orion-rs/orion/wiki/Crate-features). + +### Documentation +Can be viewed [here](https://docs.rs/orion) or built with: + +``` +RUSTDOCFLAGS='--cfg docsrs' cargo +nightly doc --no-deps --all-features +``` + +### Tests and Fuzzing +The [wiki](https://github.com/orion-rs/orion/wiki/Testing-suite) has details on how Orion is tested. To run all tests: +``` +cargo test +``` + +Fuzzing is done using [honggfuzz-rs](https://github.com/rust-fuzz/honggfuzz-rs) in [orion-fuzz](https://github.com/orion-rs/orion-fuzz). See [orion-fuzz](https://github.com/orion-rs/orion-fuzz) on how to start fuzzing Orion. + +Constant-time execution tests can be found at [orion-dudect](https://github.com/orion-rs/orion-dudect) and [orion-sidefuzz](https://github.com/orion-rs/orion-sidefuzz). + +### Benchmarks +An overview of the performance that can be expected from Orion can be [seen here](https://github.com/orion-rs/orion/wiki/Benchmarks). + +The library can be benchmarked with [Criterion](https://github.com/bheisler/criterion.rs) as below. All benchmarking tests are located in `benches/`. +``` +cargo bench +``` +### Changelog +Please refer to the [CHANGELOG.md](https://github.com/orion-rs/orion/blob/master/CHANGELOG.md) list. + +### Contributing +Please refer to the guidelines in [CONTRIBUTING.md](https://github.com/orion-rs/orion/blob/master/CONTRIBUTING.md) for information on how to contribute to Orion. + +### License +Orion is licensed under the MIT license. See the `LICENSE` file for more information. |