For your convenience we generated 2 groups of 5 different passwords each. Strong and medium groups. Please note that these passwords are secure and generated only for you (for this particular session) and every time you refresh the page the passwords below will change as they generated automatically.

Strong passwords

Hard to remember, but easy to write down.

    <?
    $count=0;
    $limit = "5";
    while($limit–) {
    $count++;
    $pass = substr(crypt(date(rand())),3,18);
    echo "

  1. $pass
  2. “;
    }
    ?>

Semi-strong passwords

Easy to remember.

    <?
    $count=0;
    $limit = "5";
    while($limit–) {
    $count++;
    $pass = substr(md5(crypt(date(rand()))),3,9);
    echo "

  1. $pass
  2. “;
    }
    ?>

If you wish to see new passwords, just press the “Generate passwords again” button below.