Skip to main content

vyre/ops/hash/
mod.rs

1//! Cryptographic and non-cryptographic hash operations.
2//!
3//! Hash ops are primarily Category A IR compositions.  Some
4//! standard-digest variants may be Category C intrinsics on
5//! backends that expose hardware-accelerated hashing.
6
7pub mod reference;
8
9automod::dir!(pub "src/ops/hash");