A cross-platform library to manage storage and retrieval of passwords (and other credential-like secrets) in the underlying platform secure store, with a fully-developed example that provides a command-line interface.
Published on crates.io
Currently supports Linux, macOS, and Windows. Please file issues if you have any problems or bugs!
To use this library in your project add the following to your Cargo.toml
file:
toml
[dependencies]
keyring = "1"
This will give you access to the keyring
crate in your code. Now you can use the Entry::new
function to create a new keyring entry. The new
function expects a service
name and an username
which together identify the entry.
Passwords can be added to an entry using its set_password
method. They can then be read back using the get_password
method, and deleted using the delete_password
method. (The persistence of the Entry
is determined via Rust rules, so deleting the password doesn't delete the entry, but it does delete the underlying platform credential which was used to store the password.)
```rust extern crate keyring;
use std::error::Error;
fn main() -> Result<(), Box
let password = "topS3cr3tP4$$w0rd";
entry.set_password(&password)?;
let password = entry.get_password()?;
println!("My password is '{}'", password);
entry.delete_password()?;
println!("My password has been deleted");
Ok(())
} ```
The get_password
, set_password
and delete_password
functions return a Result
which, if the operation was unsuccessful, can yield a keyring::Error
with a platform-independent code that describes the error.
The keychain-rs project contains a sample application: a command-line interface to the keychain in cli.rs
in the examples directory. This can be a great way to explore how the library is used, and it allows experimentation with the use of different service names, usernames, and targets. When run in "singly verbose" mode (-v), it outputs the retrieved credentials on each get
run. When run in "doubly verbose" mode (-vv), it also outputs any errors returned. This can be a great way to see which errors result from which conditions on each platform.
cli
example executable is posted for all platforms with the tag.Licensed under either of
at your option.
Thanks to the following for helping make this library better, whether through contributing code, discussion, or bug reports!
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.