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
#![doc(html_logo_url = "https://edp.fortanix.com/img/docs/edp-logo.svg",
html_favicon_url = "https://edp.fortanix.com/favicon.ico",
html_root_url = "https://edp.fortanix.com/docs/api/")]
#[cfg(unix)] #[macro_use]
extern crate nix;
#[macro_use]
extern crate failure_derive;
#[macro_use]
extern crate bitflags;
mod generic;
#[cfg(unix)] pub mod isgx;
pub mod sgx_enclave_common;
#[cfg(windows)] pub mod enclaveapi;
use std::fmt::Debug;
use std::os::raw::c_void;
use std::sync::Arc;
use sgxs::loader;
#[derive(Debug)]
pub struct Tcs {
_mapping: Arc<dyn Debug + Sync + Send>,
address: u64,
}
impl loader::Tcs for Tcs {
fn address(&self) -> *mut c_void {
self.address as _
}
}
#[derive(Debug)]
pub struct MappingInfo {
_mapping: Arc<dyn Debug + Sync + Send>,
base: u64,
size: u64,
}
impl loader::MappingInfo for MappingInfo {
fn address(&self) -> *mut c_void {
self.base as _
}
fn size(&self) -> usize {
self.size as _
}
}