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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
mod consts;
pub fn encode(input: &[u8]) -> String {
let should_pad = input.len() % 2 != 0;
let length = input.len() + should_pad as usize;
let dashes = if input.len() > 2 { length / 2 - 1 } else { 0 };
let capacity = length * 3 + dashes;
let mut output = String::with_capacity(capacity);
if should_pad {
output.push_str(consts::PREFIXES[0]);
}
let mut dashes_placed = 0;
for pair in input.rchunks(2).rev() {
match pair.len() {
1 => {
output.push_str(consts::SUFFIXES[pair[0] as usize]);
}
2 => {
output.push_str(consts::PREFIXES[pair[0] as usize]);
output.push_str(consts::SUFFIXES[pair[1] as usize]);
}
_ => unreachable!(),
}
if dashes_placed != dashes {
output.push('-');
dashes_placed += 1;
}
}
output
}
pub fn decode(input: &str) -> Option<Vec<u8>> {
if !input.is_ascii() {
return None;
}
let stripped_input = input.replace(&['-', ' '][..], "");
if stripped_input.len() % 3 != 0 {
return None;
}
let capacity = stripped_input.len() / 3;
let mut output: Vec<u8> = Vec::with_capacity(capacity);
for i in (0..stripped_input.len()).step_by(6) {
output.push(*consts::PREFIXES_MAP.get(&stripped_input[i..i + 3])?);
if stripped_input.len() >= i + 6 {
output.push(*consts::SUFFIXES_MAP.get(&stripped_input[i + 3..i + 6])?);
}
}
Some(output)
}