Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 639 Bytes

File metadata and controls

31 lines (20 loc) · 639 Bytes

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"