PHPackages                             unlight/phpass - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Security](/categories/security)
4. /
5. unlight/phpass

ActiveLibrary[Security](/categories/security)

unlight/phpass
==============

Portable PHP password hashing framework

1486PHP

Since Mar 5Pushed 13y ago1 watchersCompare

[ Source](https://github.com/unlight/phpass)[ Packagist](https://packagist.org/packages/unlight/phpass)[ RSS](/packages/unlight-phpass/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependenciesVersions (1)Used By (0)

Openwall Phpass, modernized
===========================

[](#openwall-phpass-modernized)

[![Build Status](https://camo.githubusercontent.com/7660b7140f31eaf64bc95cb38cf69d1660e84c2cf4883c9300dfdaafdb2e6012/68747470733a2f2f7365637572652e7472617669732d63692e6f72672f68617574656c6f6f6b2f7068706173732e706e673f6272616e63683d6d6173746572)](http://travis-ci.org/hautelook/phpass)

This is Openwall's [Phpass](http://openwall.com/phpass/), based on the 0.3 release, but modernized slightly:

- Namespaced
- Composer support (Autoloading)
- PHP 5 style
- Unit Tested

The changes are minimal and only stylistic. The source code is in the public domain. We claim no ownership, but needed it for one of our projects, and wanted to make it available to other people as well.

Installation
------------

[](#installation)

Add this requirement to your `composer.json` file and run `composer.phar install`:

```
{
    "require": {
        "hautelook/phpass": "dev-master"
    }
}

```

Usage
-----

[](#usage)

The following example shows how to hash a password (to then store the hash in the database), and how to check whether a provided password is correct (hashes to the same value):

```
