Skip to main content

nexcore_hash/
lib.rs

1#![forbid(unsafe_code)]
2#![warn(missing_docs)]
3#![cfg_attr(
4    not(test),
5    deny(clippy::unwrap_used, clippy::expect_used, clippy::panic)
6)]
7
8//! Zero-dependency cryptographic hashing for the NexCore ecosystem.
9//!
10//! Replaces `sha2`, `hmac`, and `digest` crates with NexVigilant-owned
11//! implementations validated against NIST CAVP and RFC 4231 test vectors.
12
13pub mod hmac;
14pub mod sha256;