default
[ class tree: default ] [ index: default ] [ all elements ]

Source for file NZGovtPasswordValidator.php

Documentation is available at NZGovtPasswordValidator.php

  1. <?php
  2.  
  3. /**
  4.  * This {@link PasswordValidator} implements the NZ E-Government Guidelines for passwords
  5.  */
  6.     function __construct({
  7.         parent::__construct();
  8.         $this->minLength(7);
  9.         $this->checkHistoricalPasswords(6);
  10.         $this->characterStrength(3array('lowercase','uppercase','digits','punctuation'));
  11.     }
  12.     
  13. }

blog comments powered by Disqus
Documentation generated on Tue, 13 May 2008 06:35:44 +1200 by phpDocumentor 1.3.2