mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
7caa87862e
All #ifndef guards on headers have been removed, I think, in favor of #pragma once Headers are now included as `#include "filename"` if the included file resides in the same directory as the file including it, or any subdirectory therein. Otherwise they are included as `#include <project/top/dir/relative/path/filename>` The above does not include system/os headers.
167 lines
2.8 KiB
C++
167 lines
2.8 KiB
C++
#pragma once
|
|
|
|
#include <llarp/constants/link_layer.hpp>
|
|
#include <llarp/util/aligned.hpp>
|
|
#include <llarp/util/bencode.h>
|
|
#include <llarp/util/buffer.hpp>
|
|
#include <llarp/util/mem.hpp>
|
|
|
|
#include <vector>
|
|
#include <stdexcept>
|
|
|
|
namespace llarp
|
|
{
|
|
/// encrypted buffer base type
|
|
template <size_t bufsz = MAX_LINK_MSG_SIZE>
|
|
struct Encrypted
|
|
{
|
|
Encrypted(Encrypted&& other)
|
|
{
|
|
_sz = std::move(other._sz);
|
|
_buf = std::move(other._buf);
|
|
UpdateBuffer();
|
|
}
|
|
|
|
Encrypted(const Encrypted& other) : Encrypted(other.data(), other.size())
|
|
{
|
|
UpdateBuffer();
|
|
}
|
|
|
|
Encrypted()
|
|
{
|
|
Clear();
|
|
}
|
|
|
|
void
|
|
Clear()
|
|
{
|
|
_sz = 0;
|
|
UpdateBuffer();
|
|
}
|
|
|
|
Encrypted(const byte_t* buf, size_t sz)
|
|
{
|
|
if (sz <= bufsz)
|
|
{
|
|
_sz = sz;
|
|
if (buf)
|
|
memcpy(_buf.data(), buf, sz);
|
|
else
|
|
_buf.Zero();
|
|
}
|
|
else
|
|
_sz = 0;
|
|
UpdateBuffer();
|
|
}
|
|
|
|
Encrypted(size_t sz) : Encrypted(nullptr, sz)
|
|
{}
|
|
|
|
bool
|
|
BEncode(llarp_buffer_t* buf) const
|
|
{
|
|
return bencode_write_bytestring(buf, data(), _sz);
|
|
}
|
|
|
|
bool
|
|
operator==(const Encrypted& other) const
|
|
{
|
|
return _sz == other._sz && memcmp(data(), other.data(), _sz) == 0;
|
|
}
|
|
|
|
bool
|
|
operator!=(const Encrypted& other) const
|
|
{
|
|
return !(*this == other);
|
|
}
|
|
|
|
Encrypted&
|
|
operator=(const Encrypted& other)
|
|
{
|
|
return Encrypted::operator=(llarp_buffer_t(other));
|
|
}
|
|
|
|
Encrypted&
|
|
operator=(const llarp_buffer_t& buf)
|
|
{
|
|
if (buf.sz <= _buf.size())
|
|
{
|
|
_sz = buf.sz;
|
|
memcpy(_buf.data(), buf.base, _sz);
|
|
}
|
|
UpdateBuffer();
|
|
return *this;
|
|
}
|
|
|
|
void
|
|
Fill(byte_t fill)
|
|
{
|
|
std::fill(_buf.begin(), _buf.begin() + _sz, fill);
|
|
}
|
|
|
|
void
|
|
Randomize()
|
|
{
|
|
if (_sz)
|
|
randombytes(_buf.data(), _sz);
|
|
}
|
|
|
|
bool
|
|
BDecode(llarp_buffer_t* buf)
|
|
{
|
|
llarp_buffer_t strbuf;
|
|
if (!bencode_read_string(buf, &strbuf))
|
|
return false;
|
|
if (strbuf.sz > sizeof(_buf))
|
|
return false;
|
|
_sz = strbuf.sz;
|
|
if (_sz)
|
|
memcpy(_buf.data(), strbuf.base, _sz);
|
|
UpdateBuffer();
|
|
return true;
|
|
}
|
|
|
|
llarp_buffer_t*
|
|
Buffer()
|
|
{
|
|
return &m_Buffer;
|
|
}
|
|
|
|
size_t
|
|
size()
|
|
{
|
|
return _sz;
|
|
}
|
|
|
|
size_t
|
|
size() const
|
|
{
|
|
return _sz;
|
|
}
|
|
|
|
byte_t*
|
|
data()
|
|
{
|
|
return _buf.data();
|
|
}
|
|
|
|
const byte_t*
|
|
data() const
|
|
{
|
|
return _buf.data();
|
|
}
|
|
|
|
protected:
|
|
void
|
|
UpdateBuffer()
|
|
{
|
|
m_Buffer.base = _buf.data();
|
|
m_Buffer.cur = _buf.data();
|
|
m_Buffer.sz = _sz;
|
|
}
|
|
AlignedBuffer<bufsz> _buf;
|
|
size_t _sz;
|
|
llarp_buffer_t m_Buffer;
|
|
}; // namespace llarp
|
|
} // namespace llarp
|