Skip to content

Releases: rhymeswithmogul/PSPasswordGenerator

More features, more security

14 Feb 02:40
v3.1.0
7d1b62b
Compare
Choose a tag to compare

Long time, no updates. I thought I was finally done, but I found some more things to do.

  • Passwords are built natively as a SecureString in memory, then converted to a normal String, instead of the other way around. While the older version wasn't what I'd call insecure, this is a significant step forward. See pull request #5.
  • A new -ExcludeCharacters parameter is now present. All characters present in the string will not be used in the generated password. Note that this only has an appreciable effect on random passwords. Idea suggested and tested by @wwc-trevor as pull request #6.
  • Packaging improvements.

Full Changelog: v3.0.0...v3.1.0

Update-PSResource PSPasswordGenerator

Now even friendlier!

17 Mar 19:32
dbb7c78
Compare
Choose a tag to compare

This version includes support for generating passwords consisting of random words. For example:

PS> Get-RandomPassword -Words 3 -WordList 'my-wordlist.txt'
illustration,Mainspring!Muleteer

Supply your own wordlist. I'm going to look into bundling one.

It's already on PowerShell Gallery, so you may use:

Update-Module PSPasswordGenerator

Now with fewer spurious error messages!

13 Jan 15:34
6b16fb9
Compare
Choose a tag to compare

This bug-fix release reduces the chance of you seeing a pointless error message. There are no user-visible changes, nor is the password generation algorithm affected.

Hello World! (Publicly)

12 Dec 06:16
875583b
Compare
Choose a tag to compare

This is the first public release of my password generator module, PSPasswordGenerator. It is already live in the PowerShell Gallery. Alternatively, you may download it here or from the GitHub Package Repository.

For help, do a Get-Help New-RandomPassword and/or Get-Help about_PSPasswordGenerator.