zksync_crypto_primitives 0.1.0

ZKsync core cryptographic primitives
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! This is implementation of a standard for hashing typed structured data for [EIP-712](https://eips.ethereum.org/EIPS/eip-712) signing standard.
//!
//! This module contains the necessary interfaces for obtaining a hash of the structure, which is later needed for EIP-712 signing.

mod member_types;
pub mod struct_builder;
pub mod typed_structure;
pub mod utils;

pub use struct_builder::*;
pub use typed_structure::*;

#[cfg(test)]
mod tests;