Compare commits

..

No commits in common. "master" and "2.0.1" have entirely different histories.

2 changed files with 8 additions and 7 deletions

View File

@ -4,7 +4,8 @@
* @date 2020/09/16 17:23:52
*/
import { base64encode, base64decode, hmac, sha1 } from 'crypto.js'
import crypto from 'crypto.js'
import { base64encode, base64decode, sha1 } from 'crypto.js'
const HS256_HEADER = 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9'
const DEFAULT_CONFIG = {
@ -13,8 +14,8 @@ const DEFAULT_CONFIG = {
secret: 'it_is_secret_key' // jwt密钥, 使用时请修改
}
function hmac_base64(str, secret) {
let buf = hmac('sha256', str, secret, 'buffer')
function hmac(str, secret) {
let buf = crypto.hmac('sha256', str, secret, 'buffer')
return base64encode(buf, true)
}
@ -43,7 +44,7 @@ export const JwtModule = {
let token = ''
payload = base64encode(JSON.stringify(payload), true)
token = hmac_base64(`${HS256_HEADER}.${payload}`, secret)
token = hmac(`${HS256_HEADER}.${payload}`, secret)
return `${HS256_HEADER}.${payload}.${token}`
},
@ -64,7 +65,7 @@ export const JwtModule = {
return false
}
if (hmac_base64(jwt.join('.'), secret) === auth) {
if (hmac(jwt.join('.'), secret) === auth) {
return payload.data
}

View File

@ -1,6 +1,6 @@
{
"name": "@gm5/jwt",
"version": "2.0.2",
"version": "2.0.1",
"type": "module",
"description": "json web token",
"main": "index.js",
@ -15,6 +15,6 @@
"repository": "https://git.wkit.fun/gm5/jwt.git",
"license": "MIT",
"dependencies": {
"crypto.js": "^3.1.2"
"crypto.js": "^2.0.1"
}
}