Some older Base64 encoders add carriage returns "\r" and/or line feeds "\n" for every 76 chars in the encoded string, known as "chunking". Reason is for the sake of editors that cannot handle longer lines.
Question is: Neither "\r" nor "\n" is one of the base chars in base64's codepage; doesn't that make the entire encoded string invalid for base64?
Note that I am not asking if the decoders will tolerate "blank" chars like \r; I am asking why adding blank chars into a base64 string is consider OK, while obviously those blank chars are not in the base64 codepage.
Thanks for your advice on this...