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
is not valid base64! "-" is not a base64 character according to https://en.wikipedia.org/wiki/Base64 and RFC4648. My ruby decoding does not automatically process it. Your encoding is base64url encoded.
Base64.urlsafe_decode64(str) solves this problem, but I wonder if the examples should be coded
into stock base64?
The text was updated successfully, but these errors were encountered:
That is an interesting question. They are encoded to base64url because that is the requirement for JOSE. I am actually thinking about finishing the re-encoding of all them to hex because it is just easier to compare against what is in my debugger.
The y-value listed in the file:
is not valid base64! "-" is not a base64 character according to https://en.wikipedia.org/wiki/Base64 and RFC4648. My ruby decoding does not automatically process it. Your encoding is base64url encoded.
Base64.urlsafe_decode64(str) solves this problem, but I wonder if the examples should be coded
into stock base64?
The text was updated successfully, but these errors were encountered: