SUC

(Simple) Secure User Credentials

SUC offers one thing: A quick way to save and hash user credentials.

Who is SUC made for?

If your project.. - Has few users - Can afford loss of data (file corruption) - Is a hobby project

..then SUC is the right thing for you!

Features

Why use SUC?

Why NOT to use SUC?

Hashing Details

Hashing is done using the argon2 Rust crate with the default options. The hash is saved to the file in the [PHC] format. Salt is generated using [OsRng].

Example

```rust use suc::sucfile::SucFile;

fn main() { let mut sf = SucFile::open("test.suc").unwrap(); sf.add("Alexander", "4312541").unwrap(); println!("{}", sf.check("Alexander", "4312541").unwrap()); sf.remove("Alexander").unwrap(); } ```