1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
use std::path::PathBuf;
use crypto::digest::Digest;
use crypto::sha2::Sha256;
use sodiumoxide::crypto::pwhash::argon2id13;
use uuid::Uuid;
pub fn hash_secret(secret: &str) -> String {
sodiumoxide::init().unwrap();
let hash = argon2id13::pwhash(
secret.as_bytes(),
argon2id13::OPSLIMIT_INTERACTIVE,
argon2id13::MEMLIMIT_INTERACTIVE,
)
.unwrap();
let texthash = std::str::from_utf8(&hash.0).unwrap().to_string();
texthash.trim_end_matches('\u{0}').to_string()
}
pub fn hash_str(string: &str) -> String {
let mut hasher = Sha256::new();
hasher.input_str(string);
hasher.result_str()
}
pub fn uuid_v4() -> String {
Uuid::new_v4().to_simple().to_string()
}
pub fn config_dir() -> PathBuf {
let home = std::env::var("HOME").expect("$HOME not found");
let home = PathBuf::from(home);
std::env::var("XDG_CONFIG_HOME").map_or_else(
|_| {
let mut config = home.clone();
config.push(".config");
config.push("atuin");
config
},
PathBuf::from,
)
}
pub fn data_dir() -> PathBuf {
let home = std::env::var("HOME").expect("$HOME not found");
let home = PathBuf::from(home);
std::env::var("XDG_DATA_HOME").map_or_else(
|_| {
let mut data = home.clone();
data.push(".local");
data.push("share");
data.push("atuin");
data
},
PathBuf::from,
)
}