原生node加密模块(crypto)
前面简单描述了第三方模块md5的加密,今天来了解一下,node原生API加密模块crypto使用代码:const crypto = require('crypto'); const hash = crypto.createHash('sha512'); hash....
关于 crypto模块 的文章共有1条
阅读(983)评论(0)
前面简单描述了第三方模块md5的加密,今天来了解一下,node原生API加密模块crypto使用代码:const crypto = require('crypto'); const hash = crypto.createHash('sha512'); hash....