Skip to content

Checksum & Hashing library for PHP, ported from Lazarus

License

Notifications You must be signed in to change notification settings

PascalVault/PHP_Hashing

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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;

About

Checksum & Hashing library for PHP, ported from Lazarus

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages