piler/util/gen-iv.pl

14 lines
130 B
Perl
Raw Normal View History

2012-02-11 23:12:30 +01:00
#!/usr/bin/perl
#
@x = ('A'..'Z','a'..'z',0..9);
$iv = "";
srand;
for($i=0; $i<16; $i++){
$iv .= @x[rand @x];
}
print $iv;