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
use core_foundation_sys::error::CFErrorRef;
use core_foundation_sys::string::CFStringRef;
use base::SecKeyRef;
use transform::SecTransformRef;
extern "C" {
pub static kSecEncryptionMode: CFStringRef;
pub static kSecEncryptKey: CFStringRef;
pub static kSecIVKey: CFStringRef;
pub static kSecModeCBCKey: CFStringRef;
pub static kSecModeCFBKey: CFStringRef;
pub static kSecModeECBKey: CFStringRef;
pub static kSecModeNoneKey: CFStringRef;
pub static kSecModeOFBKey: CFStringRef;
pub static kSecPaddingKey: CFStringRef;
pub static kSecPaddingNoneKey: CFStringRef;
pub static kSecPaddingOAEPKey: CFStringRef;
pub static kSecPaddingPKCS1Key: CFStringRef;
pub static kSecPaddingPKCS5Key: CFStringRef;
pub static kSecPaddingPKCS7Key: CFStringRef;
pub fn SecDecryptTransformCreate(keyRef: SecKeyRef, error: *mut CFErrorRef) -> SecTransformRef;
pub fn SecEncryptTransformCreate(keyRef: SecKeyRef, error: *mut CFErrorRef) -> SecTransformRef;
}