加密
Posted anthonyliu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了加密相关的知识,希望对你有一定的参考价值。
1. sha1算法
cookie-parse中对cookie值加密,如:
//对string进行sha1算法 function sha1(str){ return crypto.createHash(‘sha1‘).update(str).digest(‘hex‘); }
可以参考博客:http://blog.csdn.net/liangklfang/article/details/51072424
以上是关于加密的主要内容,如果未能解决你的问题,请参考以下文章