What it does
Decode an HTTP Basic Authorization header to extract its username and password from Base64. This is useful for debugging and API testing.
Accepted input
Paste a value such as Basic dXNlcjpwYXNz. A complete Authorization: Basic ... header line is also accepted.
Notes
- Base64 only encodes credentials; it does not protect them.
- The decoder splits on the first colon and keeps the rest in the password.
- Decoded control characters, malformed Base64, and headers containing line breaks are rejected.