accumulate_client/codec/crypto.rs
1//! Cryptographic utilities for Accumulate protocol codec
2//!
3//! This module re-exports the main crypto utilities from the crypto module.
4//! For Ed25519 operations, use `crate::crypto::ed25519` or `crate::crypto::ed25519_helper`.
5//! For hash operations, use `crate::codec::hash_helper`.
6
7// This module exists for backwards compatibility.
8// The main crypto implementations are in:
9// - crate::crypto::ed25519 - Ed25519 signing and verification
10// - crate::crypto::ed25519_helper - Key derivation utilities
11// - crate::codec::hash_helper - Hash computation utilities