rust-crypto-utils/src/lib.rs

81 lines
2.3 KiB
Rust
Raw Normal View History

2022-06-11 10:50:31 +00:00
//! [![github]](https://github.com/MedzikUser/rust-crypto-utils)
//! [![crates-io]](https://crates.io/crates/crypto-utils )
//! [![docs-rs]](https://docs.rs/crypto-utils )
2022-06-11 11:15:27 +00:00
//! [![CI]](https://github.com/MedzikUser/rust-crypto-utils/actions/workflows/rust.yml )
2022-06-11 10:50:31 +00:00
//!
//! [github]: https://img.shields.io/badge/github-8da0cb?style=for-the-badge&labelColor=555555&logo=github
//! [crates-io]: https://img.shields.io/badge/crates.io-fc8d62?style=for-the-badge&labelColor=555555&logo=rust
2022-06-11 11:15:27 +00:00
//! [docs-rs]: https://img.shields.io/badge/docs.rs-66c2a5?style=for-the-badge&labelColor=555555&logo=docs.rs
//! [CI]: https://img.shields.io/github/workflow/status/MedzikUser/rust-crypto-utils/Rust/main?style=for-the-badge
2022-06-11 10:50:31 +00:00
//!
2022-06-11 10:42:32 +00:00
//! Cryptography Utils for Rust
//!
//! ## Importing
2022-06-11 10:50:31 +00:00
//! The driver is available on [crates-io]. To use the driver in
2022-06-11 10:42:32 +00:00
//! your application, simply add it to your project's `Cargo.toml`.
//!
//! ```toml
//! [dependencies]
2022-06-11 19:26:09 +00:00
//! crypto-utils = "0.2.0"
2022-06-11 10:42:32 +00:00
//! ```
//!
//! ## How to use?
//!
//! ### Compute a Sha hash
//!
//! Add `sha` features (is enabled by default)
//!
//! ```toml
//! [dependencies]
//! crypto-utils = { version = "...", features = ["sha"] }
//! ```
//!
//! Quick and easy Sha1, Sha256 and Sha512 hash computing.
//!
//! ```
//! use crypto_utils::sha::{Algorithm, CryptographicHash};
//!
//! // input data for a hasher
//! let input = "P@ssw0rd"; // &str
//!
//! // compute hash
//! let hash_bytes = CryptographicHash::hash(Algorithm::SHA1, input.as_bytes()); // Vec<u8>
//!
//! // decode hash to a String
//! let hash = hex::encode(hash_bytes); // String
//!
//! assert_eq!(hash, "21bd12dc183f740ee76f27b78eb39c8ad972a757".to_string())
//! ```
2022-06-11 14:59:20 +00:00
//!
//! ### Json Web Token
//!
//! Add `jwt` features (is enabled by default)
//!
//! ```toml
//! [dependencies]
//! crypto-utils = { version = "...", features = ["jwt"] }
//! ```
//!
//! Create and decode a token
//!
//! ```
//! use crypto_utils::jsonwebtoken::{Claims, Token};
//!
2022-06-11 19:24:28 +00:00
//! let secret = b"secret";
2022-06-11 14:59:20 +00:00
//! let user_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx";
//!
//! // create claims
//! let claims = Claims::new(user_id, 24);
//!
//! // create token
//! let token = Token::new(secret, claims).unwrap();
//!
//! // decode token
//! let decoded = Token::decode(secret, token.encoded).unwrap();
//! ```
2022-06-11 10:42:32 +00:00
2022-06-11 14:59:20 +00:00
#[cfg(feature = "jwt")]
pub mod jsonwebtoken;
2022-06-11 10:42:32 +00:00
#[cfg(feature = "sha")]
pub mod sha;