2017 © Pedro Peláez
 

library php-htpasswd

A lightweight - single class - library to read and write htpasswd. You can add or delete users or you can update their passwords...

image

ozanhazer/php-htpasswd

A lightweight - single class - library to read and write htpasswd. You can add or delete users or you can update their passwords...

  • Wednesday, May 17, 2017
  • by ozanhazer
  • Repository
  • 4 Watchers
  • 14 Stars
  • 13 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 5 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

PHP-Htpasswd

Unit Tests, (*1)

PHP Htpasswd writer for Apache. You can add or delete users, or update their passwords., (*2)

Features

  • Supports crypt, md5 and sha1 algorithms
  • Locks the htpasswd file to prevent conflicts while writing.
  • Throws an error on invalid usernames.
  • Unit tested.
  • Whole htpasswd file is read into the memory so be careful if you have lots of users (In fact you should consider a different kind of authentication mechanism if you have that many users)

Usage

Install: composer require ozanhazer/php-htpasswd, (*3)

$htpasswd = new Htpasswd('.htpasswd');
$htpasswd->addUser('ozan', '123456');
$htpasswd->updateUser('ozan', '654321');
$htpasswd->deleteUser('ozan');

Apache htpasswd can be encrypted in three ways: crypt (unix only), a modified version of md5 and sha1. You can define the encryption method when you're setting the password:, (*4)

$htpasswd->addUser('ozan', '123456', Htpasswd::ENCTYPE_APR_MD5);
$htpasswd->addUser('ozan', '123456', Htpasswd::ENCTYPE_SHA1);

(Yes, you may use different algorithms per user in the same passwd file...), (*5)

See the Apache documentation for encryption details., (*6)

Tips

  • Do not prefer ENCTYPE_CRYPT on Windows servers since it's not available on Windows by default.
  • ENCTYPE_CRYPT passwords are limited to 8 characters and extra characters will be ignored so the library will trigger a notice if long passwords are provided.

The Versions

17/05 2017

dev-master

9999999-dev https://github.com/ozanhazer/PHP-Htpasswd

A lightweight - single class - library to read and write htpasswd. You can add or delete users or you can update their passwords...

  Sources   Download

by M.Ozan Hazer

php htpasswd