|
|
The generator of passwords
Almost on each site with registration there is a form " To recollect the password ", with its{her} help it is possible to receive the forgotten password not E-Mail. To send the password not absolutely safely as frequently users use one password in several places.
On this, a good form is replacement of the old password on new, created automatically.
It is below resulted enough a simple and interesting way of his creation:
<?
$d=Array ("ba", "be", "bo", "di", "du", "do", "de", "ku",
"ka", "ke", "si", "su", "re", "ru", "ro", "ra",
"la", "le", "li", "lo", "ve", "zde", "ka");
$str = "";
for ($i=0; $i <rand (3,4); $i ++) $str. = $ d [rand (0, count ($d))];
print $str;
?>
Turn out enough interestnye and easily remembered passwords: For example:
kakamaka
turuda
kamana
sukika
, etc.

|