Skip to content

Commit

Permalink
util: make EncodeBase32 consume Spans
Browse files Browse the repository at this point in the history
  • Loading branch information
theStack committed Aug 25, 2020
1 parent 8d6224f commit 2bc2071
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
7 changes: 4 additions & 3 deletions src/netaddress.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

#include <netaddress.h>

#include <hash.h>
#include <tinyformat.h>
#include <util/strencodings.h>
#include <util/asmap.h>
#include <tinyformat.h>

#include <algorithm>
#include <array>
Expand Down Expand Up @@ -341,9 +342,9 @@ enum Network CNetAddr::GetNetwork() const
std::string CNetAddr::ToStringIP() const
{
if (IsTor())
return EncodeBase32(m_addr.data(), m_addr.size()) + ".onion";
return EncodeBase32(m_addr) + ".onion";
if (IsInternal())
return EncodeBase32(m_addr.data(), m_addr.size()) + ".internal";
return EncodeBase32(m_addr) + ".internal";
CService serv(*this, 0);
struct sockaddr_storage sockaddr;
socklen_t socklen = sizeof(sockaddr);
Expand Down
8 changes: 4 additions & 4 deletions src/util/strencodings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -201,20 +201,20 @@ std::string DecodeBase64(const std::string& str, bool* pf_invalid)
return std::string((const char*)vchRet.data(), vchRet.size());
}

std::string EncodeBase32(const unsigned char* pch, size_t len)
std::string EncodeBase32(Span<const unsigned char> input)
{
static const char *pbase32 = "abcdefghijklmnopqrstuvwxyz234567";

std::string str;
str.reserve(((len + 4) / 5) * 8);
ConvertBits<8, 5, true>([&](int v) { str += pbase32[v]; }, pch, pch + len);
str.reserve(((input.size() + 4) / 5) * 8);
ConvertBits<8, 5, true>([&](int v) { str += pbase32[v]; }, input.begin(), input.end());
while (str.size() % 8) str += '=';
return str;
}

std::string EncodeBase32(const std::string& str)
{
return EncodeBase32((const unsigned char*)str.data(), str.size());
return EncodeBase32(MakeUCharSpan(str));
}

std::vector<unsigned char> DecodeBase32(const char* p, bool* pf_invalid)
Expand Down
2 changes: 1 addition & 1 deletion src/util/strencodings.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ std::string EncodeBase64(const unsigned char* pch, size_t len);
std::string EncodeBase64(const std::string& str);
std::vector<unsigned char> DecodeBase32(const char* p, bool* pf_invalid = nullptr);
std::string DecodeBase32(const std::string& str, bool* pf_invalid = nullptr);
std::string EncodeBase32(const unsigned char* pch, size_t len);
std::string EncodeBase32(Span<const unsigned char> input);
std::string EncodeBase32(const std::string& str);

void SplitHostPort(std::string in, int& portOut, std::string& hostOut);
Expand Down

0 comments on commit 2bc2071

Please sign in to comment.