Skip to content

Instantly share code, notes, and snippets.

@jcayzac
Created April 6, 2012 10:40
Show Gist options
  • Save jcayzac/2318793 to your computer and use it in GitHub Desktop.
Save jcayzac/2318793 to your computer and use it in GitHub Desktop.
// sortedJSON is from https://gist.github.com/2318775
var crypto = require('crypto'),
getStableHash = function (obj) {
return crypto.createHmac('sha1', 'woot').update(sortedJSON(obj)).digest('hex');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment