signer-core 0.3.2

Signer core package.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod error;
pub mod signer_crypted;
pub mod signer_fs_store;
pub mod signer_jwt;
pub mod signer_remote_resource;
pub mod signer_signed;
pub mod signer_user;

#[cfg(test)]
mod tests;

pub use error::{Result, SignerError};
pub use signer_crypted::*;
pub use signer_fs_store::*;
pub use signer_jwt::*;
pub use signer_remote_resource::*;
pub use signer_signed::*;
pub use signer_user::*;