fix(node/buffer): fix base64 decoding for strings with hyphens#32298
Merged
bartlomieju merged 1 commit intodenoland:mainfrom Feb 26, 2026
Merged
fix(node/buffer): fix base64 decoding for strings with hyphens#32298bartlomieju merged 1 commit intodenoland:mainfrom
bartlomieju merged 1 commit intodenoland:mainfrom
Conversation
Fixes base64 decoding for strings containing `-` and `_` characters (base64url chars). Two bugs: (1) base64url replacements happened after base64clean, causing wrong padding calculation, and (2) base64clean appended `===` for length%4==1 which is invalid base64 — now drops the trailing char like Node does. Closes denoland#24908 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Tango992
approved these changes
Feb 25, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Buffer.from(str, "base64")throwing on strings containing-characters (e.g."base64-encoded-bytes-from-browser")base64ToBytes/base64clean:-→+,_→/) were applied afterbase64clean, so the padding calculation used the wrong string lengthbase64cleanappended===whenlength % 4 == 1, which is invalid base64 padding — now drops the trailing character to match Node.js behaviorTest plan
tests/unit_node/buffer_test.tsverifying:Buffer.from("base64-encoded-bytes-from-browser", "base64")produces correct output matching Node.jsBuffer.from("not-valid-base64!!!", "base64")doesn't throwBuffer.from("A", "base64")returns empty buffer (single char too short)Closes #24908
🤖 Generated with Claude Code