1. 程式人生 > >跨域的認證與加密

跨域的認證與加密

分享圖片 安裝 all cnp pro update eat date 註意

1.jsonwebtoken

安裝:cnpm install jsonwebtoken -s

引入:const jwt = require("jsonwebtoken");

設置:jwt.sign(payload,秘鑰,{"expiresIn":"1h"})

2.crypro

安裝:cnpm install crypro

引入:const crypto = require("crypto");

const hash = crypto.createHash("sha256");

hash.update("加密信息");

hash.digest("hex") //加鹽

簡單演示:

技術分享圖片

註意:token的密匙也應該加密

跨域的認證與加密