You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var result = [];
var current;
while (!(current = it.next()).done) {
result.push([current.value[1], characters[i]]);
i++;
}
// TODO Test utf8ToUint8Array function
var messageAsUint8Array = utf8ToUint8Array(partialToken);
This block of code in the signJWT function does nothing with the result that it iterates over. I was also not able to get a JWT with a verifiable signature but wanted to mainly point out that the above code seems useless
The text was updated successfully, but these errors were encountered:
This block of code in the signJWT function does nothing with the result that it iterates over. I was also not able to get a JWT with a verifiable signature but wanted to mainly point out that the above code seems useless
The text was updated successfully, but these errors were encountered: