mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 21:17:41 +03:00
Base32 decode lowercased characters as well
This commit is contained in:
parent
432675e512
commit
d0b6a88f9c
2 changed files with 5 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue