md5.js #1

  • //
  • guest/
  • jen_bottom/
  • ember/
  • tutorial/
  • testapp/
  • node_modules/
  • leek/
  • lib/
  • md5.js
  • View
  • Commits
  • Open Download .zip Download (182 B)
'use strict';

var crypto = require('crypto');

module.exports = function md5(str) {
  return crypto
          .createHash('md5')
          .update(str)
          .digest('hex');
};
# Change User Description Committed
#1 23539 jenbottom Adding the basic code for ember test appk, created with 'ember new' command