jwt-simple
Advanced tools
Comparing version 0.4.0 to 0.4.1
@@ -0,1 +1,5 @@ | ||
## 0.4.1 | ||
Fix version numver #32 | ||
## 0.4.0 | ||
@@ -2,0 +6,0 @@ |
@@ -46,9 +46,9 @@ /* | ||
*/ | ||
jwt.version = '0.2.0'; | ||
jwt.version = '0.4.1'; | ||
/** | ||
* Decode jwt | ||
* Decode jwt | ||
* | ||
* @param {Object} token | ||
* @param {String} key | ||
* @param {String} key | ||
* @param {Boolean} noVerify | ||
@@ -85,3 +85,3 @@ * @param {String} algorithm | ||
} | ||
// verify signature. `sign` will return base64 string. | ||
@@ -136,3 +136,3 @@ var signingInput = [headerSeg, payloadSeg].join('.'); | ||
segments.push(sign(segments.join('.'), key, signingMethod, signingType)); | ||
return segments.join('.'); | ||
@@ -139,0 +139,0 @@ }; |
{ | ||
"name": "jwt-simple", | ||
"description": "JWT(JSON Web Token) encode and decode module", | ||
"version": "0.4.0", | ||
"version": "0.4.1", | ||
"author": "Kazuhito Hokamura <k.hokamura@gmail.com>", | ||
@@ -6,0 +6,0 @@ "repository": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
11553