Skip to main content

om_crypto_types/
lib.rs

1//! Publishable cryptography-related types intended for `om-sdk` and other
2//! public crates.
3//!
4//! This crate must avoid depending on internal (private) crates.
5
6pub mod bls12381;
7pub mod counter_sign;
8pub mod error;
9pub mod io;
10
11/// The prefix for encoding protocol messages for signing and verification.
12pub const DOMAIN_PREFIX: &[u8] = b"1money::";