universiterennes2/standfordlikepasswordpolicy

Standford's like password policy checker, homepage support

v1.0.1 2022-06-05 17:27 UTC

This package is auto-updated.

Last update: 2024-05-12 00:01:51 UTC


README

Latest Stable Version REUSE compliant Minimum PHP Version Unit tests Coverage Status License

This library implements a checker for Standford's password policy in PHP with only one minor change :

  • The minimal password's length is 9 (instead of 8 in the original policy)

The Standford password policy is a length-based password policy : increase password length = decrease constraints.

  • 9-11 character passwords require the use of upper and lower case, numerical and special characters.
  • 12-15 character passwords require the use of upper and lower case and numerical characters.
  • 16-19 character passwords require upper and lower case characters
  • 20+ characters require any characters.

Table of Contents

Install

composer require universiterennes2/standfordlikepasswordpolicy

Usage

<?php
require_once __DIR__ . "/vendor/autoload.php";

use UniversiteRennes2\StandfordLikePasswordPolicy\StandfordLikePasswordPolicy;

$passwordPolicy = new StandfordLikePasswordPolicy();

$password = 'not compliant';

if ( $passwordPolicy->isCompliant($password) ) {
    // Compliant password
    echo "Compliant\n";
} else {
    // Not compliant !
    echo "Not compliant\n";
}

See a more complete example in examples/ directory.

Contribute

See CONTRIBUTING.md

License

This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License v3.0 or later as published by the Free Software Foundation.

The program in this repository meet the requirements to be REUSE compliant, meaning its license and copyright is expressed in such as way so that it can be read by both humans and computers alike.

For more information, see https://reuse.software/