We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
mustB64dec
When trying to decode bad b64 data, the current b64dec function does not fail, but prints out illegal base64 data at input byte instead.
b64dec
illegal base64 data at input byte
Along sprigs must... pattern, I propose to add a mustB64dec function, which fails on bad b64 encoded data.
must...
The text was updated successfully, but these errors were encountered:
add mustB64dec (and mustB32dec) which fails on bad b64 data instead o…
ed3d23a
…f decoding to "illegal base64 data at input byte ..." Closes Masterminds#417
Successfully merging a pull request may close this issue.
When trying to decode bad b64 data, the current
b64dec
function does not fail, but prints outillegal base64 data at input byte
instead.Along sprigs
must...
pattern, I propose to add amustB64dec
function, which fails on bad b64 encoded data.The text was updated successfully, but these errors were encountered: