博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
crypto加密
阅读量:5256 次
发布时间:2019-06-14

本文共 1571 字,大约阅读时间需要 5 分钟。

/* hash.js */
    var crypto = require('crypto');
module.exports = function(){
     this.encode = function(){
          var algorithm  = arguments[0] ? arguments[0] : ''
        , enstring   = arguments[1] ? arguments[1] : ''
        , returnType = arguments[2] ? arguments[2] : '';
      if( algorithm ){
           var hash = crypto.createHash(algorithm);
           hash.update(enstring);
           return hash.digest(returnType);
      }
      console.log('Please input encryption param');
 }
}
 
/* target.js */
module.exports = function(){
        this.encode = function(){}
        this.decode = function(){}
}
 
/* adapter.js */
 
var util = require('util'),
    Target = require('./target');
 
function Adapter(){
        Target.call(this);
        this.encode = function(){
                var encodeModule = arguments[0] ? arguments[0] : null
                  , algorithm    = arguments[1] ? arguments[1] : ''  
                  , enstring     = arguments[2] ? arguments[2] : ''
                  , returnType   = arguments[3] ? arguments[3] : ''
                  ,AdapteeClass = require("./" + encodeModule)
                  ,adapteeObj = new AdapteeClass();
                  return adapteeObj.encode(algorithm, enstring, returnType, encodeKey, encodeType);
        }
}
 
util.inherits(Adapter,Target);
module.exports = Adapter;
 
/* test.js */
var AdapterClass = require('./adapter');
var Adapter = new AdapterClass();
var hashEncodeStr = Adapter.encode('hash', 'md5', 'yuejide', 'hex');
console.log(hashEncodeStr);
 
var http = require('http');
var crypto = require('crypto')
http.createServer(function(req,res){
 res.writeHead(200, {'Content-Type' : 'text/html'});
 var md5 = crypto.createHash('md5');
 var passwd = md5.update('admin').digest('hex');
 res.end(passwd);
}).listen(8888);

转载于:https://www.cnblogs.com/yulei126/p/6786082.html

你可能感兴趣的文章
python学习笔记3-列表
查看>>
程序的静态链接,动态链接和装载 (补充)
查看>>
关于本博客说明
查看>>
线程androidAndroid ConditionVariable的用法
查看>>
转载:ASP.NET Core 在 JSON 文件中配置依赖注入
查看>>
socket初识
查看>>
磁盘测试工具
查看>>
代码变量、函数命名神奇网站
查看>>
redis cli命令
查看>>
Problem B: 占点游戏
查看>>
python常用模块之sys, os, random
查看>>
HDU 2548 A strange lift
查看>>
Linux服务器在外地,如何用eclipse连接hdfs
查看>>
react双组件传值和传参
查看>>
[Kaggle] Sentiment Analysis on Movie Reviews
查看>>
价值观
查看>>
mongodb命令----批量更改文档字段名
查看>>
使用 SharedPreferences 分类: Andro...
查看>>
TLA+(待续...)
查看>>
题解: [GXOI/GZOI2019]与或和
查看>>