Changes between Initial Version and Version 1 of Ticket #23397
- Timestamp:
- Sep 2, 2014, 12:19:10 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #23397 – Description
initial v1 2 2 3 3 Parse tries to process base64 encoded files in chunks with lengths a multiple of 4. The base64 encoded string can contain newline characters, which aren't significant in base64 and should be ignored, but are counted toward's a chunk's length in parse(). This means when whitespace is stripped from the string, the count of base64 encoded characters may not be a multiple of 4, leading to an "Incorrect padding" error. 4 5 Here's a testcase for creating this failure: 6 7 https://github.com/jhobbs/django/commit/98347e396133990b82b596310e4490369ba676d5 4 8 5 9 Stacktrace: