Criptografía, PowerShell, Seguridad, Strings PowerShell #Function function cif($a) { for($c=0; $c -lt $a.Length; $c=$c+1) {[char]([int]$a[$c]+1)} } #Call [string]$a="PowerShell" $b=cif($a) $b 1234567891011 #Functionfunction cif($a){for($c=0; $c -lt $a.Length; $c=$c+1){[char]([int]$a[$c]+1)}} #Call[string]$a="PowerShell"$b=cif($a)$b