move hashers to core mod for adding future mods
This commit is contained in:
parent
14d672d035
commit
40c0dba4b6
4 changed files with 3 additions and 2 deletions
|
@ -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
1
src/core.rs
Normal file
|
@ -0,0 +1 @@
|
|||
pub mod hashers;
|
|
@ -1,2 +1,2 @@
|
|||
pub mod message;
|
||||
pub mod hashers;
|
||||
pub mod core;
|
||||
|
|
Loading…
Add table
Reference in a new issue