Changes between Initial Version and Version 1 of Ticket #23397


Ignore:
Timestamp:
Sep 2, 2014, 12:19:10 PM (10 years ago)
Author:
jhobbs
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #23397 – Description

    initial v1  
    22
    33Parse 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
     5Here's a testcase for creating this failure:
     6
     7https://github.com/jhobbs/django/commit/98347e396133990b82b596310e4490369ba676d5
    48
    59Stacktrace:
Back to Top