CartoDB-SQL-API/lib/utils/md5.js

10 lines
191 B
JavaScript
Raw Normal View History

'use strict';
var crypto = require('crypto');
module.exports = function generateMD5(data){
var hash = crypto.createHash('md5');
hash.update(data);
return hash.digest('hex');
};