refactor(crypto): move Integrable trait to arbiter-crypto

This commit is contained in:
CleverWild
2026-06-29 16:58:35 +02:00
parent b843105533
commit 647f0c8519
3 changed files with 8 additions and 4 deletions

View File

@@ -0,0 +1,6 @@
use crate::hashing::Hashable;
pub trait Integrable: Hashable {
const KIND: &'static str;
const VERSION: i32 = 1;
}

View File

@@ -1,6 +1,7 @@
#[cfg(feature = "authn")]
pub mod authn;
pub mod hashing;
pub mod integrity;
#[cfg(feature = "safecell")]
pub mod safecell;