/rusty-password-generator

Simple password generator

Primary LanguageRustMIT LicenseMIT

Rusty password generator

This project is a simple command line tool to generate random passwords. The purpose of this is to learn Rust language basics.

How to run

  • git clone https://github.com/pitcer/rusty-password-generator
  • cd rusty-password-generator/
  • cargo build
  • cd target/debug
  • ./rusty-password-generator 8 abcdefgh

First argument is password length, second, characters used to generate password.