Skip to content

TheXJ-Github/Secure-Password-Generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

About

A simple secure password generator in C# with plenty of options

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages