xmtp_cryptography/lib.rs
1pub mod basic_credential;
2pub mod configuration;
3pub mod ethereum;
4pub mod hash;
5pub mod rand;
6pub mod signature;
7pub mod utils;
8
9pub use basic_credential::*;
10
11pub type Secret = tls_codec::SecretVLBytes; // Byte array with ZeroizeOnDrop
12
13pub mod openmls {
14 pub use openmls::*;
15}
16
17#[cfg(test)]
18mod test {
19 // common depends on cryptography
20 #[cfg(target_arch = "wasm32")]
21 wasm_bindgen_test::wasm_bindgen_test_configure!(run_in_dedicated_worker);
22}