Crate flowerpassword

Crate flowerpassword 

Source
Expand description

Flower Password implementation for Rust

This library implements the Flower Password algorithm, which generates secure passwords based on a master password and a key using MD5/HMAC-MD5 hashing with a specific transformation algorithm.

§Example

use flowerpassword::fp_code;

let password = fp_code("test", "github.com", 16).unwrap();
assert_eq!(password, "D04175F7A9c7Ab4a");

Enums§

FlowerPasswordError
Error type for Flower Password operations

Functions§

fp_code
Generates a Flower Password based on master password and key