PHP Classes

Oire Colloportus: Create a key, encrypt, decrypt data with sha-384

Recommend this page to a friend!
  Info   View files View files (8)   DownloadInstall with Composer Download .zip   Reputation   Support forum   Blog (1)    
Ratings Unique User Downloads Download Rankings
Not enough user ratingsTotal: 120 This week: 1All time: 9,484 This week: 571Up
Version License PHP version Categories
colloportus 1.0MIT/X Consortium ...7.1.2Cryptography, Security, PHP 7
Description 

Author

This class can create a key, encrypt, decrypt data with sha-384.

It is a fork of Paragon Initiatives PasswordLock package combined with parts of Defuse PHP-Encryption.

The class can creates a new random encryption key, encrypt data with a given key, decrypt data with a given key, hash password SHA-384, verify
and decrypt the ciphertext to get the hash and verify that the password matches the hash, change the key of encryption data.

Picture of Andre Polykanine A.K.A. Menelion Elensślė
  Performance   Level  
Name: Andre Polykanine A.K.A. ... is available for providing paid consulting. Contact Andre Polykanine A.K.A. ... .
Classes: 3 packages by
Country: Ukraine Ukraine
Age: ???
All time rank: 213434 in Ukraine Ukraine
Week rank: 420 Up7 in Ukraine Ukraine Up
Innovation award
Innovation award
Nominee: 1x

Details

Oirė Colloportus

Build Status MIT License

Wraps Bcrypt-SHA384 in Authenticated Encryption. A simplified fork of Password Lock by Paragon Initiative Enterprises. Integrates parts of Defuse PHP Encryption for authenticated symmetric-key encryption. Depends on Oirė Base64 for encoding binary data to a storable format.

About the Name

Colloportus is a magical spell in the well-known Harry Potter series. It locks doors in a very hard-to-open way, and such a door is completely impossible to open for muggles, i.e., non-wizarding people. I decided to use this as a name for my simplified fork of PasswordLock. The method names are also simplified: lock, check and flip instead of HashAndEncrypt, DecryptAndVerify and RotateKey.

Requirements

Requires PHP 7.1.2 or later with mbString and openSSL enabled.

Installation

Via Composer:

composer require oire/colloportus

Or manually. Note that you will need base64.php from Oirė Base64:

require_once("oire/base64.php");
require_once("oire/colloportus.php");

Running Tests

Run ./vendor/bin/phpunit in the projects directory.

Usage Examples

Hash Password, Encrypt Hash, Authenticate Cipher Text

use \Oire\Colloportus;
try {
	$key = Colloportus::createKey();
	// To save the key in a storable form, either pass false as parameter to the createKey() method, or do:
	$storable = Colloportus::save($key);
} catch(Exception $e) {
	// Handle errors
}
if (isset($_POST['password'])) {
	try {
		// You may lock the password with a storable key. To do this, pass false as the third parameter
		$storeMe = Colloportus::lock($_POST['password'], $key);
	} catch(Exception $e) {
		// Handle errors
	}
}

Verify MAC, Decrypt Ciphertext, Verify Password

if (isset($_POST['password'])) {
	try {
		// You may verify the password with a storable key. To do this, pass false as the fourth parameter
		$verified = Colloportus::check($_POST['password'], $storeMe, $key);
	} catch(Exception $e) {
		// Handle errors
	}
	if ($verified) {
		// Success!
	}
}

Re-encrypt a hash with a different encryption key

try {
	$newKey = Colloportus::createKey();
} catch(Exception $e) {
	// Handle errors
}
try {
	$newHash = Colloportus::flip($storeMe, $key, $newKey);
} catch(Exception $e) {
	// Handle errors
}

Methods

All Colloportus methods are public and static, so no class instance is required. The methods are documented in the source file, but their description is given below. We recommend to wrap every call in try...catch since Colloportus throws exceptions in case of errors.

  • `public static function createKey(bool $rawBinary = true): string` ? Creates a random encryption key. If the parameter is set to `true`, a raw binary key will be returned. If it is set to `false`, the key will be returned in a storable (i.e., readable) form.
  • `public static function encrypt(string $plainText, string $key, bool $rawKey = true, bool $rawBinary = false): string` ? Encrypts given string data with a given key. If `$rawKey` is set to `true`, it is assumed that the key is passed as raw binary data, a storable key is assumed otherwise. If `$rawBinary` is set to true, the encrypted data are returned as binary string, a storable string is returned otherwise.
  • `public static function decrypt(string $cipherText, string $key, bool $rawKey = true, bool $rawBinary = false): string` ? Decrypts given cipher text with a given key. If `$rawKey` is set to `true`, it is assumed that the key is passed as raw binary data, a storable key is assumed otherwise. If `$rawBinary` is set to true, it is assumed that the cipher text is passed as raw binary data, a storable string is accepted otherwise.
  • `public static function lock(string $password, string $key, bool $rawKey = true): string` ? Locks given password with given key. If `$rawKey` is set to `true`, it is assumed that the key is passed as raw binary data, a storable key is accepted otherwise. Returns a storable string.
  • `public static function check(string $password, string $cipherText, string $key, bool $rawKey = true): bool` ? Verifies the given password against given storable cipher text. If `$rawKey` is set to `true`, it is assumed that the key is passed as binary data, a storable string is accepted otherwise. Returns `true` on success or `false` on failure.
  • `public static function flip(string $cipherText, string $oldKey, string $newKey, bool $rawOldKey = true, bool $rawNewKey = true, bool $rawBinaryOld = false, bool $rawBinaryNew = false): string` ? Allows to re-encrypt the password hash with a different key (for example, if the old key is compromised and the hashes are not). If `$rawOldKey` and/or `$rawNewKey` are set to `true`, it is assumed that the old and/or new keys are in raw binary form, storable strings are accepted otherwise. If `$rawBinaryOld` and/or `$rawBinaryNew` are set to `true`, it is assumed that the old cipher text is in raw binary form and/or the new cipher text will be returned in raw binary form.
  • `public static function save(string $binary): string` ? Allows to save a raw binary string (for example, the newly created key) as a storable string.
  • `public static function load(string $storable): string` ? Allows to transform a storable string in raw binary data.

Differences between Password Lock and Colloportus

  • All methods needed for encryption/decryption are provided along with the hashing/verifying methods.
  • Back-porting to older PHP versions is removed, hence PHP 7.1.2 is required (the `hash_hkdf()` method was added in this particular version).
  • Custom string processing implementations are removed, `mbstring` is required.
  • Version header check is removed.
  • `encrypt()` and, subsequently, `Lock()` returns URL/filename-safe Base64 data instead of hexits.
  • All `sha256` instances are changed to `sha384`.
  • Code style changed to match Oirė standards.

Contributing

All contributions are welcome. Please fork, make a feature branch, hack on the code, run tests, push your branch and send a pull-request.

License

Copyright © 2017-2019, Andre Polykanine. This software is licensed under an MIT license.


  Files folder image Files  
File Role Description
Files folder imagesrc (1 file)
Files folder imagetests (1 file)
Plain text file .travis.yml Data Auxiliary data
Plain text file autoload.php Aux. Auxiliary script
Plain text file composer.json Data Auxiliary data
Plain text file LICENSE Lic. License text
Plain text file phpunit.xml Data Auxiliary data
Plain text file README.md Doc. Documentation

  Files folder image Files  /  src  
File Role Description
  Plain text file colloportus.php Class Class source

  Files folder image Files  /  tests  
File Role Description
  Plain text file ColloportusTest.php Class Class source

Downloadcolloportus-2019-01-10.zip 9KB
Downloadcolloportus-2019-01-10.tar.gz 7KB
Install with ComposerInstall with Composer
Needed packages  
Class DownloadWhy it is needed Dependency
Oire Base64 Download .zip .tar.gz Needed to transform binary data into a storable form. Required
 Version Control Unique User Downloads Download Rankings  
 100%
Total:120
This week:1
All time:9,484
This week:571Up