Skip to content

duzun/SipHash

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SipHash Build Status

SipHash-2-4 implementation written in PHP

Install

composer require duzun/siphash

Vanilla PHP (no composer)

Copy src/siphash.php to your project, then

require_once 'src/siphash.php';

Usage

use duzun\SipHash; // PHP >= 5.3.0

// 128-bit $key is a string of max 16 chars
// $message is any string you want to hash
$hash = SipHash::hash_2_4($key, $message); // eg. "6dd48df68066d1bd"

About

SipHash-2-4 implementation in PHP

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages