#encoding
Base64 vs base64url: what's the difference?
Standard Base64 uses + and /, which break inside URLs. base64url swaps them for - and _. Here's when to use each.
Daniel Raja
Software engineer and technical writer
In-depth, practical guides tagged encoding.
Standard Base64 uses + and /, which break inside URLs. base64url swaps them for - and _. Here's when to use each.
Software engineer and technical writer
Encoding is not encryption, and hashing is neither. Mixing them up causes real security mistakes. Here's the plain-English difference.
Software engineer and technical writer
A JWT is not encrypted. Its header and payload are just base64url and anyone can read them. Here's how, and what decoding does not prove.
Software engineer and technical writer