bad_lock 0.2.0

lock/unlock files with password by aes-128-cbc
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[macro_export]
macro_rules! get_md5 {
    ($source:expr) => {
        md5::compute($source).0
    };
}

#[macro_export]
macro_rules! timestamp {
    () => {
        std::time::SystemTime::now()
        .duration_since(std::time::UNIX_EPOCH)
        .unwrap()
        .as_millis()
    };
}