blob: 45d53c096f97f1e2bb8df4f5bb03a0529eb467b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
pub fn hash(_algo: &str, _data: &str) -> String {
todo!()
}
pub fn hash_raw(_algo: &str, _data: &str) -> Vec<u8> {
todo!()
}
pub fn hash_file(_algo: &str, _filename: &str) -> Option<String> {
todo!()
}
|