An open API service indexing awesome lists of open source software.

https://github.com/pascalvault/php_hashing

Checksum & Hashing library for PHP, ported from Lazarus
https://github.com/pascalvault/php_hashing

Last synced: 4 days ago
JSON representation

Checksum & Hashing library for PHP, ported from Lazarus

Awesome Lists containing this project

README

          

# PHP_Hashing
Checksum & Hashing library for PHP, ported from Lazarus

# PHP Port of Lazarus_Hashing
https://github.com/PascalVault/Lazarus_Hashing

## Usage example: ##

include 'Hasher.php';

$Msg = '123456789';

$Hasher = new Hasher('Adler-32');

$Hasher->Update($Msg, strlen($Msg));

$Hash = $Hasher->Finish();

echo $Hash;