25 lines
491 B
JavaScript
25 lines
491 B
JavaScript
define(function(require) {
|
|
|
|
require("crypto-js/rollups/sha256"); var Crypto = CryptoJS;
|
|
|
|
function guid() {
|
|
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
|
|
var r = Math.random()*16|0, v = c == 'x' ? r : (r&0x3|0x8);
|
|
return v.toString(16);
|
|
}).toUpperCase();
|
|
}
|
|
|
|
function hash(string) {
|
|
return Crypto.SHA256(string).toString(Crypto.enc.hex);
|
|
}
|
|
|
|
function nop() {}
|
|
|
|
return {
|
|
guid: guid,
|
|
hash: hash,
|
|
nop: nop
|
|
};
|
|
|
|
});
|