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
- Host: GitHub
- URL: https://github.com/pascalvault/php_hashing
- Owner: PascalVault
- License: mit
- Created: 2023-10-09T09:46:15.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-09T09:56:35.000Z (over 2 years ago)
- Last Synced: 2025-12-26T16:37:24.116Z (4 months ago)
- Language: PHP
- Size: 126 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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;