You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 14, 2021. It is now read-only.
The base64 encoding plugin disregard any leading or trailing new line characters, which may be important in the original input, for example, encoding chunks of a csv file, where a new line character denotes the end of a record.
If it happened that the end of a chunk aligned with the end of a record (a new line character), it will be removed in the encoding, producing a corrupted file when decoded back.
The base64 encoding plugin disregard any leading or trailing new line characters, which may be important in the original input, for example, encoding chunks of a csv file, where a new line character denotes the end of a record.
If it happened that the end of a chunk aligned with the end of a record (a new line character), it will be removed in the encoding, producing a corrupted file when decoded back.
Example input 01:
Expected and actual:
c3RyMDEKc3RyMDIKc3RyMDM=Example input 02:
Expected:
CgpzdHIwMQpzdHIwMgpzdHIwMw==Actual:
c3RyMDEKc3RyMDIKc3RyMDM=Example input 03:
Expected:
c3RyMDEKc3RyMDIKc3RyMDMKCg==Actual:
c3RyMDEKc3RyMDIKc3RyMDM=