摘要: 1、使用nodejs生成md5var crypto = require('crypto');function md5 (text) { return crypto.createHash('md5').update(text).digest('hex');}; 阅读全文
posted @ 2013-10-28 08:40 长城的草 阅读(282) 评论(0) 推荐(0) 编辑