aboutsummaryrefslogtreecommitdiff
path: root/src/util/base64.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/base64.cc')
-rw-r--r--src/util/base64.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/util/base64.cc b/src/util/base64.cc
index 4e8d0a4..4a4f095 100644
--- a/src/util/base64.cc
+++ b/src/util/base64.cc
@@ -8,22 +8,22 @@ namespace dictzip {
std::size_t base64_decode(const std::string& encoded) {
std::vector<std::int8_t> map(256,-1);
- for ( int i = 0; i < 64; ++i ) {
+ for ( int i = 0; i < 64; ++i ) {
map["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"[i]] = i;
}
std::size_t value = 0;
- for ( std::uint8_t c : encoded ) {
- if ( map[c] == -1 ) {
+ for ( std::uint8_t c : encoded ) {
+ if ( map[c] == -1 ) {
throw std::invalid_argument("Invalid character in BASE64 string.");
} else {
value *= 64;
value += map[c];
}
- }
+ }
- return value;
+ return value;
}
}