random_password_generator 0.1.0

Rust library to generate random passwords, you can define whether the password will have alphabetical, numeric or special characters.
Documentation
  • Coverage
  • 0%
    0 out of 7 items documented0 out of 6 items with examples
  • Size
  • Source code size: 9.98 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.37 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • alejandrocastellanos

random_password_generator

Rust library to generate random passwords, you can define whether the password will have alphabetical, numeric or special characters.

Installation

To use random_password_generator in your Rust project, add it as a dependency in your Cargo.toml:

[dependencies]
random_password_generator = "0.1.0"

```rust
use random_password_generator::generate_password;

fn main() {
    let random_letter = generate_password(true, true,true, 5);
    println!("new password generated: {}", random_letter)
}