Might a base64 encoded string contain whitespace? Specifically, could it contain whitespace at the end of the string?
PS. I’m thinking about the whole “MySQL will trim trailing whitespace when storing strings in VARCHAR fields” here 😉
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No it can’t. See Base64 for the allowed character repository used by
base64, which are the charactersA-Z,a-z,0-9,+and/(the last two may differ depending on the implementation) as well as the padding character=(but that’s also implementation dependent as some implementations don’t use padding at all).