iwcore 0.1.25

IntelliWallet Core - Password manager library with AES-256 encryption
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Business logic layer for IntelliWallet
//!
//! This module provides the high-level Wallet API for managing
//! items, fields, labels, and other wallet operations.

pub mod wallet;
pub mod items;
pub mod fields;
pub mod labels;
pub mod search;
pub mod export;

pub use wallet::Wallet;