optee-utee 0.0.1

TEE internal core API.
1
2
3
4
5
6
7
8
9
10
11
12
13
pub use self::error::{Error, ErrorKind, Result};
pub use self::object::*;
pub use self::parameter::{ParamType, ParamTypes, Parameter, Parameters};
pub use optee_utee_macros::{
    ta_close_session, ta_create, ta_destroy, ta_invoke_command, ta_open_session,
};

pub mod trace;
#[macro_use]
mod macros;
mod error;
pub mod object;
mod parameter;