🚚 Rust crate for Dono Key Derivation Function
Dono is a password derivation tool which derives passwords from a master Key by using short descriptions of the destination service.
You can read more about the project in it's whitepaper repository or download the PDF.
To use this crate add the following to your Cargo.toml
file:
toml
[dependencies]
dono = "0.1.0"
Then in your rust code:
rust
extern crate dono;
This will give you access to the Dono
and DonoError
structs.
A new instance of Dono
can be created with the new()
function. This gives
you access to the compute_password
function.
```rust extern crate dono;
fn main() { let dono = dono::Dono::new();
let key = "thisisalongtestkey".tostring(); let label = "test".tostring(); let passwordlength = 64; let addfixedsymbol = false; let addfixedcapital = false;
let password = dono.computepassword( &key, &label, &passwordlength, &addfixedsymbol, &addfixedcapital ).unwrap();
println!("password: {}", password); } ```
This library has a custom error called DonoError
that has the
following string fields in it:
field
- Indicates which parameter caused the errorcode
- A code associated with that errordescription
- Detailed description of what went wrong with possible solutionmessage
- Short description of what went wrongError codes:
CP001
- The key is too shortCP002
- Desired password length is too longThis project is licensed under the GPLv3. The full license text is available here.