base32.cc 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /* <!-- copyright */
  2. /*
  3. * aria2 - The high speed download utility
  4. *
  5. * Copyright (C) 2009 Tatsuhiro Tsujikawa
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. *
  21. * In addition, as a special exception, the copyright holders give
  22. * permission to link the code of portions of this program with the
  23. * OpenSSL library under certain conditions as described in each
  24. * individual source file, and distribute linked combinations
  25. * including the two.
  26. * You must obey the GNU General Public License in all respects
  27. * for all of the code used other than OpenSSL. If you modify
  28. * file(s) with this exception, you may extend this exception to your
  29. * version of the file(s), but you are not obligated to do so. If you
  30. * do not wish to do so, delete this exception statement from your
  31. * version. If you delete this exception statement from all source
  32. * files in the program, then also delete it here.
  33. */
  34. /* copyright --> */
  35. #include "base32.h"
  36. #include "util.h"
  37. namespace aria2 {
  38. namespace base32 {
  39. namespace {
  40. const char B32TABLE[] = {
  41. 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H',
  42. 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P',
  43. 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
  44. 'Y', 'Z', '2', '3', '4', '5', '6', '7'
  45. };
  46. } // namespace
  47. std::string encode(const std::string& src)
  48. {
  49. std::string ret;
  50. size_t count = 0;
  51. uint64_t buf = 0;
  52. for(size_t i = 0; i < src.size(); ++i) {
  53. buf <<= 8;
  54. buf += src[i]&0xffu;
  55. ++count;
  56. if(count == 5) {
  57. char temp[8];
  58. for(size_t j = 0; j < 8; ++j) {
  59. temp[7-j] = B32TABLE[buf&0x1fu];
  60. buf >>= 5;
  61. }
  62. ret += std::string(&temp[0], &temp[8]);
  63. count = 0;
  64. buf = 0;
  65. }
  66. }
  67. size_t r = 0;
  68. if(count == 1) {
  69. buf <<= 2;
  70. r = 2;
  71. } else if(count == 2) {
  72. buf <<= 4;
  73. r = 4;
  74. } else if(count == 3) {
  75. buf <<= 1;
  76. r = 5;
  77. } else if(count == 4) {
  78. buf <<= 3;
  79. r = 7;
  80. }
  81. char temp[7];
  82. for(size_t j = 0; j < r; ++j) {
  83. temp[r-1-j] = B32TABLE[buf&0x1fu];
  84. buf >>= 5;
  85. }
  86. ret += std::string(&temp[0], &temp[r]);
  87. if(r) {
  88. ret += std::string(8-r, '=');
  89. }
  90. return ret;
  91. }
  92. std::string decode(const std::string& src)
  93. {
  94. std::string ret;
  95. if(src.size()%8) {
  96. return ret;
  97. }
  98. bool done = false;
  99. for(size_t i = 0; i < src.size() && !done; i += 8) {
  100. uint64_t buf = 0;
  101. size_t bits = 0;
  102. for(size_t j = 0; j < 8; ++j) {
  103. char ch = src[i+j];
  104. unsigned char value;
  105. if('A' <= ch && ch <= 'Z') {
  106. value = ch-'A';
  107. } else if('2' <= ch && ch <= '7') {
  108. value = ch-'2'+26;
  109. } else if(ch == '=') {
  110. done = true;
  111. break;
  112. } else {
  113. ret.clear();
  114. return ret;
  115. }
  116. buf <<= 5;
  117. buf += value;
  118. bits += 5;
  119. }
  120. buf >>= (bits%8);
  121. bits = bits/8*8;
  122. buf = hton64(buf);
  123. char* p = reinterpret_cast<char*>(&buf);
  124. ret += std::string(&p[(64-bits)/8], &p[8]);
  125. }
  126. return ret;
  127. }
  128. } // namespace base32
  129. } // namespace aria2