PoshCode Archive  Artifact [f061231cbe]

Artifact f061231cbecbe6614b752f0fff5b46d8ba6c89f5cb08a0a64a10948523112e69:

  • File Password-Generator.ps1 — part of check-in [b74a8b3bbe] at 2018-06-10 14:12:23 on branch trunk — Functions: New-PIN, New-Password, New-PassPhrase (user: AlphaSun size: 5033)

# encoding: ascii
# api: powershell
# title: Password Generator
# description: Functions: New-PIN, New-Password, New-PassPhrase
# version: 0.1
# type: function
# author: AlphaSun
# license: CC0
# function: Check-Even
# x-poshcode-id: 6295
# x-archived: 2016-04-11T15:11:28
# x-published: 2016-04-08T21:19:00
#
# Provides quick access to randomly generated PINs, Passwords, and Pass Phrases.
# New-PIN: Provides PINs of various lengths from 1-19 digits as Integers and PINs of 20 or more digits as Strings.
# New-Password: Provides a random password with the given parameters. The default length is 12 characters. If you wish to omit a particular character set (eg. Symbols), you need to specify the total password length as well as how many characters from each set should be included. The sum of all selected sets should equal the total number of characters desired in the password. If the sum of the selected sets is less than the total, it is possible that a character from the undesired set may be included in the generated password.
# New-PassPhrase: Provides a random pass phrase using words from a word list loaded into the $PasswdList variable. The overall security of the provided passwords depends greatly on the size of the word list you use—the more words, the bigger the haystack. With no defined switches, the function will randomly select 4 words from the word list, generate 4 random digits, and use the “-” as a separator character. Words are randomly capitalized. The number of words, number of digits, and separator character are configurable in addition to your choice of word list to use. A word list of 5,000-20,000 words is recommended.
# Check-Even: Simple function to check if a number is even. Used in the New-PassPhrase function to randomize capitalization of words.
#
# Wordlist of choice. Used with New-PassPhrase function.
$PasswdList = Import-CSV $ENV:UserProfile\words.csv

function Check-Even($num){[bool]!($num%2)}

function New-PIN{ 
	[CmdletBinding(SupportsShouldProcess=$True,ConfirmImpact='Low')] 
	param( 
		[parameter(Mandatory = $true, Position = 0)] 
		[ValidateRange(1,([int]::MaxValue))][int]$Digits = 1 
	) 
	$NC = 0
	[string]$PIN = ""
	While($NC -lt $Digits){
		$PIN += Get-Random -Minimum 0 -Maximum 10
		$NC += 1
	} 
	If($Digits -lt 19){
		return [int64]$PIN}
	Else{return [string]$PIN}
}

function New-Password{ 
    [CmdletBinding(SupportsShouldProcess=$True,ConfirmImpact='Low')] 
    param( 
        [parameter(Mandatory = $true, Position = 0)] 
        [ValidateRange(1,([int]::MaxValue))][int]$Total = 12,
        [ValidateRange(0,([int]::MaxValue))][int]$Upper = 0,
        [ValidateRange(0,([int]::MaxValue))][int]$Lower = 0,
        [ValidateRange(0,([int]::MaxValue))][int]$Numeric = 0,
        [ValidateRange(0,([int]::MaxValue))][int]$Symbol = 0,
    ) 
    Process{ 
    if(($Upper+$Lower+$Numeric) -gt $Total){ 
        throw "New-Password : Cannot validate argument on parameter 'Total'. The $Total argument is less than the sum of parameters 'Upper', 'Lower', 'Numeric', and 'Symbol'. 
    Supply an argument that is greater than or equal to the sum of parameters 'Upper', 'Lower', 'Numeric', and 'Symbol'." 
    } 
	$UC = (65..90)
	$LC = (97..122)
	$NU = (48..57)
	$SY = (33..38 + 40..47 + 58..64 + 91..95 + 123..126)
    [int[]]$IArr = New-Object System.Int32 
    If($Upper -ge 1){ 
        $IArr += Get-Random -Input $($UC) -Count $Upper 
    } 
    If($Lower -ge 1){ 
        $IArr += Get-Random -Input $($LC) -Count $Lower 
    } 
    If($Numeric -ge 1){ 
        $IArr += Get-Random -Input $($NU) -Count $Numeric 
    } 
    If($Symbol -ge 1){ 
        $IArr += Get-Random -Input $($SY) -Count $Symbol 
    } 
    If($Total -gt ($Upper+$Lower+$Numeric+$Symbol)){ 
        $IArr += Get-Random -Input $($UC + $LC + $NU + $SY) -Count ($Total - $Upper - $Lower - $Numeric - $Symbol) 
    } 
    $IArr =  $IArr -ne 0 
    return ([char[]](Get-Random -InputObject $IArr -Count $IArr.Count)) -join "" 
    } 
}

function New-PassPhrase{ 
[CmdletBinding(SupportsShouldProcess=$True,ConfirmImpact='Low')] 
param( 
	[parameter(Mandatory = $false, Position = 0)] 
	[ValidateRange(1,([int]::MaxValue))][int]$Words = 4,
	[parameter(Mandatory = $false, Position = 1)] 
	[ValidateRange(0,([int]::MaxValue))][int]$Numbers = 4,
	[ValidateSet("~","!","@","#","$","%","^","&","*","-","_","=","+",";",":",",",".","|"," ")][string]$Separator = "-"
) 

	$WC = 0
	While($WC -lt $Words){
	$Case = (Get-Random -Minimum 0 -Maximum 100)
	If((Check-Even $Case) -eq $True){ 
		$Word += ($(Get-Random -Input $PasswdList).Word).ToUpper()
		$Word += $Separator
		$WC += 1
	} 
	elseIf((Check-Even $Case) -eq $False){
		$Word += ($(Get-Random -Input $PasswdList).Word).ToLower()
		$Word += $Separator
		$WC += 1
	}
	}

	$NC = 0
	If($Words -eq 0){[string]$Word = ""}
	While($NC -lt $Numbers){
		$Word += Get-Random -Minimum 0 -Maximum 10
		$NC += 1
	} 
	return [string]$Word
}