Fixed base64::decode() return "" if input ends with garbase and no padding

This commit is contained in:
Tatsuhiro Tsujikawa 2012-07-04 22:51:41 +09:00
parent aa944f4ef6
commit 995c07c184
2 changed files with 8 additions and 1 deletions

View file

@ -76,6 +76,9 @@ void Base64Test::testDecode()
s = "TWFu";
CPPUNIT_ASSERT_EQUAL(std::string("Man"), base64::decode(s.begin(), s.end()));
s = "TWFu\n";
CPPUNIT_ASSERT_EQUAL(std::string("Man"), base64::decode(s.begin(), s.end()));
s = "TQ==";
CPPUNIT_ASSERT_EQUAL(std::string("M"), base64::decode(s.begin(), s.end()));