You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/service/tag.hpp

66 lines
1.4 KiB
C++

#ifndef LLARP_SERVICE_TAG_HPP
#define LLARP_SERVICE_TAG_HPP
#include <dht/key.hpp>
#include <util/aligned.hpp>
#include <sodium/crypto_generichash.h>
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif
namespace llarp
{
namespace service
{
struct Tag : public llarp::AlignedBuffer< 16 >
{
Tag() : llarp::AlignedBuffer< SIZE >()
{
}
Tag(const byte_t* d) : llarp::AlignedBuffer< SIZE >(d)
{
}
Tag(const std::string& str) : Tag()
{
// evidently, does nothing on LP64 systems (where size_t is *already*
// unsigned long but zero-extends this on LLP64 systems
// 2Jan19: reeee someone undid the patch
std::copy(str.begin(), str.begin() + std::min(std::string::size_type(16), str.size()),
begin());
}
Tag&
operator=(const Tag& other)
{
as_array() = other.as_array();
return *this;
}
Tag&
operator=(const std::string& str)
{
std::copy(str.begin(), str.begin() + std::min(std::string::size_type(16), str.size()),
begin());
return *this;
}
std::string
ToString() const;
bool
Empty() const
{
return ToString().empty();
}
using Hash = AlignedBuffer< SIZE >::Hash;
};
} // namespace service
} // namespace llarp
#endif