3d-interface/lib/vcode.js

9 lines
202 B
JavaScript
Raw Normal View History

2015-09-29 15:46:31 +02:00
var hash = require('sha256');
var secretKey = require('../private.js').microSecretKey;
module.exports = function(campaignId, workerId) {
return 'mw-' + hash(campaignId + workerId + secretKey);
}