var hash = function(value) {
    return '"' + crypto.createHash('md5').update(value).digest("hex") + '"';
};