animo-secure-env 0.5.0

secure-env is a wrapper library around the Android KeyStore and the iOS Security Framework for key creation and sign operations using the Secure Element
Documentation
#[cfg(not(any(target_os = "android", target_os = "ios")))]
compile_error!("Only Android and iOS are supported targets");

pub mod error;

mod key;
pub use key::*;

mod secure_environment;
pub use secure_environment::*;

#[cfg(target_os = "ios")]
mod ios;
#[cfg(target_os = "ios")]
pub use ios::*;

#[cfg(target_os = "android")]
mod android;
#[cfg(target_os = "android")]
pub use android::*;

#[cfg(target_os = "android")]
mod jni_tokens;