mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-04 14:30:42 +02:00
Improve list-random-passwords.ps1 and list-random-pins.ps1
This commit is contained in:
parent
c5fa0b574d
commit
62741a1fba
@ -1,21 +1,20 @@
|
|||||||
#!/usr/bin/pwsh
|
#!/usr/bin/pwsh
|
||||||
<#
|
<#
|
||||||
.SYNTAX list-random-passwords.ps1
|
.SYNTAX list-random-passwords.ps1 [<password-length>] [<columns>] [<rows>]
|
||||||
.DESCRIPTION prints a list of random passwords
|
.DESCRIPTION prints a list of random passwords
|
||||||
.LINK https://github.com/fleschutz/PowerShell
|
.LINK https://github.com/fleschutz/PowerShell
|
||||||
.NOTES Author: Markus Fleschutz / License: CC0
|
.NOTES Author: Markus Fleschutz / License: CC0
|
||||||
#>
|
#>
|
||||||
|
|
||||||
$PasswordLength = 15
|
param([int]$PasswordLength = 15, [int]$Columns = 6, [int]$Rows = 26)
|
||||||
$Columns = 6
|
|
||||||
$Lines = 24
|
|
||||||
$MinCharCode = 33
|
$MinCharCode = 33
|
||||||
$MaxCharCode = 126
|
$MaxCharCode = 126
|
||||||
|
|
||||||
try {
|
try {
|
||||||
write-output ""
|
write-output ""
|
||||||
$Generator = New-Object System.Random
|
$Generator = New-Object System.Random
|
||||||
for ($j = 0; $j -lt $Lines; $j++) {
|
for ($j = 0; $j -lt $Rows; $j++) {
|
||||||
$Line = ""
|
$Line = ""
|
||||||
for ($k = 0; $k -lt $Columns; $k++) {
|
for ($k = 0; $k -lt $Columns; $k++) {
|
||||||
for ($i = 0; $i -lt $PasswordLength; $i++) {
|
for ($i = 0; $i -lt $PasswordLength; $i++) {
|
||||||
|
@ -6,22 +6,17 @@
|
|||||||
.NOTES Author: Markus Fleschutz / License: CC0
|
.NOTES Author: Markus Fleschutz / License: CC0
|
||||||
#>
|
#>
|
||||||
|
|
||||||
param([int]$PinLength = 5, [int]$Columns = 12, [int]$Rows = 24)
|
param([int]$PinLength = 5, [int]$Columns = 12, [int]$Rows = 26)
|
||||||
|
|
||||||
function GeneratePIN {
|
|
||||||
$Generator = New-Object System.Random
|
|
||||||
for ($i = 0; $i -lt $PinLength; $i++) {
|
|
||||||
$PIN += [char]$Generator.next(48,57)
|
|
||||||
}
|
|
||||||
return $PIN
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
write-output ""
|
write-output ""
|
||||||
|
$Generator = New-Object System.Random
|
||||||
for ($j = 0; $j -lt $Rows; $j++) {
|
for ($j = 0; $j -lt $Rows; $j++) {
|
||||||
$Line = ""
|
$Line = ""
|
||||||
for ($k = 0; $k -lt $Columns; $k++) {
|
for ($k = 0; $k -lt $Columns; $k++) {
|
||||||
$Line += GeneratePIN
|
for ($i = 0; $i -lt $PinLength; $i++) {
|
||||||
|
$Line += [char]$Generator.next(48,57)
|
||||||
|
}
|
||||||
$Line += " "
|
$Line += " "
|
||||||
}
|
}
|
||||||
write-output $Line
|
write-output $Line
|
||||||
|
Loading…
Reference in New Issue
Block a user