secure-auth

Crates.iosecure-auth
lib.rssecure-auth
version1.0.0
created_at2025-11-28 06:21:30.54709+00
updated_at2025-11-28 06:21:30.54709+00
descriptionA high-security, enterprise-grade Rust authentication layer for handling user signup and login with encrypted storage.
homepage
repositoryhttps://github.com/seleste3580-dev/secure-auth
max_upload_size
id1954904
size19,072
(seleste3580-dev)

documentation

README

secure-auth

Enterprise-grade authentication crate .

This library provides secure signup and login layers for:

  • Web applications
  • Mobile apps
  • Desktop apps
  • Enterprise systems

Features

✔ Argon2id password hashing
✔ AES-256-GCM encrypted storage
✔ Secure user database
✔ Very easy API
✔ Corporate-ready

Usage

use slsecure_auth::Secure;

fn main() {
    let mut auth = Secure::new();

    auth.signup("seleste", "Strong#Password")
        .expect("Signup failed");

    match auth.login("seleste", "Strong#Password") {
        Ok(_) => println!("Login success"),
        Err(err) => println!("Login error: {:?}", err),
    }
}
Commit count: 0

cargo fmt