Coding Challenge #2! (115)

65 Name: binhqx 2006-02-14 22:58 ID:GlE36oKT

Here is a tiny perl program for creating 10 character random alphanumeric passwords with mixed case.

#!/usr/bin/perl
@a=(0..9,a..z,A..Z);
for(1..10){print@a[rand@a]}
print"\n"

Name: Link:
Leave these fields empty (spam trap):
More options...
Verification: