Examples/Safe_PredictableRandomSeed_1.ps1

function Get-SafeRandom1 {
    $bytes = [byte[]]::new(16)
    [System.Security.Cryptography.RandomNumberGenerator]::Fill($bytes)
    return [Convert]::ToHexString($bytes)
}