|
|
@@ -77,7 +77,8 @@ function parseCookies(cookieString) {
|
|
|
|
|
|
function parseBase64(base64Str){
|
|
|
let CryptoJS = createCryptoJS();
|
|
|
- return CryptoJS.enc.Base64.parse(base64Str);
|
|
|
+ let hexStr = CryptoJS.enc.Base64.parse(base64Str);
|
|
|
+ return CryptoJS.enc.Hex.parse(hexStr);
|
|
|
}
|
|
|
|
|
|
function parseJwt(token) {
|