Secret Service

Secret Service Rust library.

Interfaces with the Linux Secret Service API through dbus.

This library is feature complete but still in experimental stage.

Documentation

Get Docs!

Basic Usage

Requires dbus and gmp development libraries installed (see Advanced section if you need to disable gmp).

On ubuntu, requires libdbus-1-dev and libgmp-dev.

In Cargo.toml:

[dependencies] secret-service = "0.4.0"

If you have cargo-extras installed, can replace above step with the command at the prompt in your project directory:

$ cargo add secret-service

In source code (below example is for --bin, not --lib)

```rust extern crate secretservice; use secretservice::SecretService; use secret_service::EncryptionType;

fn main() {

// initialize secret service (dbus connection and encryption session)
let ss = SecretService::new(EncryptionType::Dh).unwrap();

// get default collection
let collection = ss.get_default_collection().unwrap();

//create new item
collection.create_item(
    "test_label", // label
    vec![("test", "test_value")], // properties
    b"test_secret", //secret
    false, // replace item with same attributes
    "text/plain" // secret content type
).unwrap();

// search items by properties
let search_items = ss.search_items(
    vec![("test", "test_value")]
).unwrap();

let item = search_items.get(0).unwrap();

// retrieve secret from item
let secret = item.get_secret().unwrap();
assert_eq!(secret, b"test_secret");

// delete item (deletes the dbus object, not the struct instance)
item.delete().unwrap()

} ```

Functionality

Advanced

It is possible to disable the dependency on libgmp by disabling the default features in your Cargo.toml file:

[dependencies]
secret-service = { version = "^0.4", default-features = false }

Note: this will build the library without support for creating encrypted connections to dbus, EncryptionType::Dh will be unavailable.

In many cases this is OK, as dbus encryption is primarily intended to prevent secrets from being swapped to disk.

Use EncryptionType::Plain when gmp is disabled.

Changelog

0.4.0 - gmp is now optional dependency - gmp upgraded to 0.3 to fix "private-in-public" warnings which will be hard errors soon.

Todo

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.