Slots only need to be independent of each other, which the \b anchoring in the RANDOMIZED* replacers already guarantees. Constraining the character mix was solving a different problem than the one asked for. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
12 lines
344 B
Bash
Executable File
12 lines
344 B
Bash
Executable File
#!/bin/bash
|
|
|
|
generateRandomPassword()
|
|
{
|
|
local password=""
|
|
local length=${CFG_GENERATED_PASS_LENGTH:-20} # Default to 20 if not set
|
|
|
|
# Generate password with letters and numbers only (no special chars)
|
|
password=$(dd if=/dev/urandom bs=64 count=1 2>/dev/null | base64 | tr -d '+/=' | head -c $length)
|
|
echo "$password"
|
|
}
|