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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
use std::fmt;
use Error;
use Fingerprint;
use KeyID;
use Result;
impl fmt::Display for KeyID {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}", self.to_string())
}
}
impl fmt::Debug for KeyID {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_tuple("KeyID")
.field(&self.to_string())
.finish()
}
}
impl From<KeyID> for Vec<u8> {
fn from(id: KeyID) -> Self {
let mut r = Vec::with_capacity(8);
match id {
KeyID::V4(ref b) => r.extend_from_slice(b),
KeyID::Invalid(ref b) => r.extend_from_slice(b),
}
r
}
}
impl KeyID {
pub fn new(data: u64) -> KeyID {
let bytes = [
(data >> (7 * 8)) as u8,
(data >> (6 * 8)) as u8,
(data >> (5 * 8)) as u8,
(data >> (4 * 8)) as u8,
(data >> (3 * 8)) as u8,
(data >> (2 * 8)) as u8,
(data >> (1 * 8)) as u8,
(data >> (0 * 8)) as u8
];
Self::from_bytes(&bytes[..])
}
pub fn as_u64(&self) -> Result<u64> {
match &self {
KeyID::V4(ref b) =>
Ok(0u64
| ((b[0] as u64) << (7 * 8))
| ((b[1] as u64) << (6 * 8))
| ((b[2] as u64) << (5 * 8))
| ((b[3] as u64) << (4 * 8))
| ((b[4] as u64) << (3 * 8))
| ((b[5] as u64) << (2 * 8))
| ((b[6] as u64) << (1 * 8))
| ((b[7] as u64) << (0 * 8))),
KeyID::Invalid(_) =>
Err(Error::InvalidArgument("Invalid KeyID".into()).into()),
}
}
pub fn from_bytes(raw: &[u8]) -> KeyID {
if raw.len() == 8 {
let mut keyid : [u8; 8] = Default::default();
keyid.copy_from_slice(raw);
KeyID::V4(keyid)
} else {
KeyID::Invalid(raw.to_vec().into_boxed_slice())
}
}
pub fn from_hex(hex: &str) -> Result<KeyID> {
let bytes = ::conversions::from_hex(hex, true)?;
if bytes.len() == 8 {
Ok(KeyID::from_bytes(&bytes[..]))
} else {
Ok(Fingerprint::from_hex(hex)?.to_keyid())
}
}
pub fn as_slice(&self) -> &[u8] {
match self {
&KeyID::V4(ref id) => id,
&KeyID::Invalid(ref id) => id,
}
}
pub fn wildcard() -> Self {
Self::from_bytes(&[0u8; 8][..])
}
pub fn is_wildcard(&self) -> bool {
self.as_slice().iter().all(|b| *b == 0)
}
pub fn to_string(&self) -> String {
self.convert_to_string(true)
}
pub fn to_hex(&self) -> String {
self.convert_to_string(false)
}
fn convert_to_string(&self, pretty: bool) -> String {
let raw = match self {
&KeyID::V4(ref fp) => &fp[..],
&KeyID::Invalid(ref fp) => &fp[..],
};
let mut output = Vec::with_capacity(
raw.len() * 2
+ if pretty {
raw.len() / 2
} else { 0 });
for (i, b) in raw.iter().enumerate() {
if pretty && i > 0 && i % 2 == 0 {
output.push(' ' as u8);
}
let top = b >> 4;
let bottom = b & 0xFu8;
if top < 10u8 {
output.push('0' as u8 + top)
} else {
output.push('A' as u8 + (top - 10u8))
}
if bottom < 10u8 {
output.push('0' as u8 + bottom)
} else {
output.push('A' as u8 + (bottom - 10u8))
}
}
String::from_utf8(output).unwrap()
}
}
#[cfg(test)]
mod test {
use super::*;
quickcheck! {
fn u64_roundtrip(id: u64) -> bool {
KeyID::new(id).as_u64().unwrap() == id
}
}
}