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
use core_foundation::base::TCFType;
use core_foundation::string::CFString;
use core_foundation_sys::string::CFStringRef;
use security_framework_sys::item::*;
use item::ItemSearchOptions;
use os::macos::keychain::SecKeychain;
use ItemSearchOptionsInternals;
#[derive(Debug, Copy, Clone)]
pub struct KeyType(CFStringRef);
#[allow(missing_docs)]
impl KeyType {
pub fn rsa() -> KeyType {
unsafe { KeyType(kSecAttrKeyTypeRSA) }
}
pub fn dsa() -> KeyType {
unsafe { KeyType(kSecAttrKeyTypeDES) }
}
pub fn aes() -> KeyType {
unsafe { KeyType(kSecAttrKeyTypeAES) }
}
pub fn des() -> KeyType {
unsafe { KeyType(kSecAttrKeyTypeDES) }
}
pub fn triple_des() -> KeyType {
unsafe { KeyType(kSecAttrKeyType3DES) }
}
pub fn rc4() -> KeyType {
unsafe { KeyType(kSecAttrKeyTypeRC4) }
}
pub fn cast() -> KeyType {
unsafe { KeyType(kSecAttrKeyTypeCAST) }
}
#[cfg(feature = "OSX_10_9")]
pub fn ec() -> KeyType {
unsafe { KeyType(kSecAttrKeyTypeEC) }
}
pub(crate) fn to_str(&self) -> CFString {
unsafe { CFString::wrap_under_get_rule(self.0) }
}
}
pub trait ItemSearchOptionsExt {
fn keychains(&mut self, keychains: &[SecKeychain]) -> &mut Self;
}
impl ItemSearchOptionsExt for ItemSearchOptions {
fn keychains(&mut self, keychains: &[SecKeychain]) -> &mut ItemSearchOptions {
ItemSearchOptionsInternals::keychains(self, keychains)
}
}
#[cfg(test)]
mod test {
use tempdir::TempDir;
use item::*;
use os::macos::certificate::SecCertificateExt;
use os::macos::test::keychain;
#[test]
fn find_certificate() {
let dir = p!(TempDir::new("find_certificate"));
let keychain = keychain(dir.path());
let results = p!(ItemSearchOptions::new()
.keychains(&[keychain])
.class(ItemClass::certificate())
.search());
assert_eq!(1, results.len());
let certificate = match results[0] {
SearchResult::Ref(Reference::Certificate(ref cert)) => cert,
_ => panic!("expected certificate"),
};
assert_eq!("foobar.com", p!(certificate.common_name()).to_string());
}
}