auths-sdk 0.1.2

Application services layer for Auths identity operations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Re-exports of keychain, encrypted file storage, and passphrase cache types from `auths-core`.

pub use auths_core::storage::encrypted_file::EncryptedFileStorage;
pub use auths_core::storage::keychain;
pub use auths_core::storage::keychain::{
    KeyAlias, KeyRole, KeyStorage, extract_public_key_bytes, get_platform_keychain,
    get_platform_keychain_with_config, migrate_legacy_alias, sign_with_key,
};
pub use auths_core::storage::passphrase_cache::{get_passphrase_cache, parse_duration_str};

// IdentityDID is re-exported from keychain
pub use auths_core::storage::keychain::IdentityDID;