move hashers to core mod for adding future mods

This commit is contained in:
Bryson Steck 2025-08-12 20:23:57 -06:00
parent 14d672d035
commit 40c0dba4b6
Signed by: bryson
SSH key fingerprint: SHA256:XpKABw/nP4z8UVaH+weLaBnEOD86+cVwif+QjuYLGT4
4 changed files with 3 additions and 2 deletions

View file

@ -8,7 +8,7 @@ use std::sync::{Arc, Mutex};
use std::thread::{self, JoinHandle, available_parallelism};
use picca::message;
use picca::hashers;
use picca::core::hashers;
const ALGORITHMS: [&'static str; 44] = [
"ascon",

1
src/core.rs Normal file
View file

@ -0,0 +1 @@
pub mod hashers;

View file

@ -1,2 +1,2 @@
pub mod message;
pub mod hashers;
pub mod core;