-
Notifications
You must be signed in to change notification settings - Fork 8
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
Buffer overflow exception when input contains 'z's #4
Comments
@zaxdo not sure i understand. I tried this:
|
Do Ascii85.decode("zzzzzzzzzzzzzzzzzzzzzz"); |
I also released a new version 1.2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When decoding, the formula for the output size is "input_size * 4 / 5", which does account for the fact that when input contains only 'z's output can be 4 times as large as the output.
The text was updated successfully, but these errors were encountered: