stealth-lib 1.0.1

ZK-friendly cryptographic primitives (MiMC hash, Merkle trees)
Documentation
1
2
3
4
5
6
7
8
//! Encoding utilities.
//!
//! This module provides utilities for encoding and decoding data,
//! primarily wrapping the `hex` crate for hexadecimal operations.

pub mod hex_utils;

pub use hex_utils::{decode_hex, encode_hex};