Skip to content

Instantly share code, notes, and snippets.

@yvmarques
Created July 3, 2013 14:26
Show Gist options
  • Save yvmarques/5918372 to your computer and use it in GitHub Desktop.
Save yvmarques/5918372 to your computer and use it in GitHub Desktop.
<?php
$key = 'SomeAgreedKey';
$algo = 'ripemd160';
$data = array(
'uid' => 1234,
'passwd' => '12345'
);
$token = hash_hmac($algo, implode(',', $data), $key);
var_dump($token);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment