Struct kpdb::Database [] [src]

pub struct Database {
    pub comment: Option<Comment>,
    pub composite_key: CompositeKey,
    pub compression: Compression,
    pub db_type: DbType,
    pub master_cipher: MasterCipher,
    pub stream_cipher: StreamCipher,
    pub transform_rounds: TransformRounds,
    pub version: Version,
    pub binaries: BinariesMap,
    pub color: Option<Color>,
    pub custom_data: CustomDataMap,
    pub custom_icons: CustomIconsMap,
    pub def_username: String,
    pub def_username_changed: DateTime<Utc>,
    pub description: String,
    pub description_changed: DateTime<Utc>,
    pub entries: EntriesMap,
    pub entry_templates_group_changed: DateTime<Utc>,
    pub entry_templates_group_uuid: GroupUuid,
    pub generator: String,
    pub group_uuid: Option<GroupUuid>,
    pub groups: GroupsMap,
    pub history: HistoryMap,
    pub history_max_items: i32,
    pub history_max_size: i32,
    pub last_selected_group: GroupUuid,
    pub last_top_visible_group: GroupUuid,
    pub maintenance_history_days: i32,
    pub master_key_change_force: i32,
    pub master_key_change_rec: i32,
    pub master_key_changed: DateTime<Utc>,
    pub name: String,
    pub name_changed: DateTime<Utc>,
    pub protect_notes: bool,
    pub protect_password: bool,
    pub protect_title: bool,
    pub protect_url: bool,
    pub protect_username: bool,
    pub recycle_bin_changed: DateTime<Utc>,
    pub recycle_bin_enabled: bool,
    pub recycle_bin_uuid: GroupUuid,
}

The KeePass database.

Fields

Content of the comment header.

Composite key.

Compression algorithm.

Type of the database.

Master encryption algorithm.

Stream encryption algorithm (e.g. passwords).

Number of times the composite key must be transformed.

The database version.

Map with binary data.

Optional color.

Map with custom data.

Map with custom icons.

Default username for new entries.

The date and time the default username was changed.

Description of this database.

The date and time the description was changed.

Map with entries.

The date and time the entry templates group was changed.

The identifier of the group containing entry templates.

Name of the generator.

The identifier of the root group.

Map with groups.

Map with history entries.

Maximum number of history items.

Maximum size of the history data.

The identifier of the last selected group.

The identifier of the last top visible group.

Number of days until history entries are being deleted.

The date and time the master key was changed.

Name of this database.

The date and time the name was changed.

Whether notes must be protected.

Whether passwords must be protected.

Whether titles must be protected.

Whether URL's must be protected.

Whether usernames must be protected.

The date and time the recycle bin was changed.

Whether the recycle bin is enabled.

The identifier of the recycle bin.

Methods

impl Database
[src]

Create a new database.

Examples

use kpdb::{CompositeKey, Database};

let key = CompositeKey::from_password("password");
let db = Database::new(&key);

Attempts to open an existing database.

Examples

use kpdb::{CompositeKey, Database};
use std::fs::File;

let mut file = try!(File::open("passwords.kdbx"));
let key = CompositeKey::from_password("password");
let db = try!(Database::open(&mut file, &key));

Attempts to save the database.

Examples

use kpdb::{CompositeKey, Database};
use std::fs::File;

let key = CompositeKey::from_password("password");
let db = Database::new(&key);
let mut file = try!(File::create("new.kdbx"));

try!(db.save(&mut file));

Trait Implementations

impl Clone for Database
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Database
[src]

Formats the value using the given formatter.

impl PartialEq for Database
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.