In Base64 encoding, if result ends in \n, remove it. (Fixes #79, #105)

This commit is contained in:
cryptoreddit 2013-10-09 09:58:13 -07:00
parent 19a5d00d4a
commit ad1983ac12

View File

@ -54,7 +54,8 @@ function s2r(t) {
r += "\n";
r += '=';
}
if (r.charAt(r.length-1)==="\n")
r=r.slice(0,-1);
return r;
}