加解密
Node.js 加解密
	
	
	Categories:
crypto 加密
产生随机加密字串
const encrypt_string = require('crypto').randomBytes(64).toString('hex');
console.log(encrypt_string);
const encrypt_string = require('crypto').randomBytes(64).toString('hex');
console.log(encrypt_string);