Skip to content

Latest commit

 

History

History
31 lines (27 loc) · 1.69 KB

README.md

File metadata and controls

31 lines (27 loc) · 1.69 KB

Warning

This is not a serious project and as such may have flaws and bugs
If you are looking for a good password generator, you might want to look elsewhere

About

Secure Password Generator is a simple program that lets you generate up to 128 passwords with up to 1024 random characters
I made this in my free time over the course of a few hours

Features

  • Security Setting
    • Low Security - Uses C#'s Random class
    • Medium Security - Uses Xorshift32, a very fast, linear PRNG
    • High Security - Uses C#'s RandomNumberGenerator class, a cryptographically secure RNG
  • Password Length (2 - 1024)
    • A higher count can help Medium Security's PRNG as it seeds itself
    • It is recommended not to go beyond 64 characters when using High Security
  • Password Count (1 - 128)
    • Generates a whole new password, which can also help Medium Security's PRNG
    • It is recommended not to go beyond 3 passwords when using High Security
  • Generation Iterations
    • Number of times to use the PRNG. A higher count can help Medium Security's PRNG as it seeds itself
    • It is recommended not to go beyond 1 iteration when using High Security

Requirements

Note

These are the bare minimum that support this program. I recommend going for more recent releases

  • (Minimum) Windows 7 SP1
  • (Minimum) Windows Server 2008 R2 SP1
  • .NET 4.7.2