-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Base64Fuzzer to the repo #103011
Add Base64Fuzzer to the repo #103011
Conversation
Tagging subscribers to this area: @dotnet/area-infrastructure-libraries |
@MihuBot fuzz base64 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The fuzzing part LGTM.
The System.Buffers area may want to check if this is covering all the paths we care about for Base64.
Well, Base64 doesn't have so many APIs, and this PR covers all those APIs. There could be scenario where whitespaces involved in decoding, but I am not sure how to tell the fuzzer to generate valid base64 bytes with whitespaces, looks there is no way except insert white spaces manually after encoding. |
Add Base64Fuzzer to the repo
Related to #102364 (review)