Base32 decode lowercased characters as well

This commit is contained in:
Tatsuhiro Tsujikawa 2015-11-25 23:08:24 +09:00
parent 432675e512
commit d0b6a88f9c
2 changed files with 5 additions and 0 deletions

View file

@ -48,6 +48,9 @@ void Base32Test::testDecode()
s = "GEZDGNBV";
CPPUNIT_ASSERT_EQUAL(std::string("12345"),
base32::decode(s.begin(), s.end()));
s = "gezdgnbv";
CPPUNIT_ASSERT_EQUAL(std::string("12345"),
base32::decode(s.begin(), s.end()));
}
} // namespace aria2