lokinet/llarp/crypto/encrypted_frame.hpp

99 lines
2.4 KiB
C++
Raw Normal View History

#ifndef LLARP_ENCRYPTED_FRAME_HPP
#define LLARP_ENCRYPTED_FRAME_HPP
#include <crypto/encrypted.hpp>
#include <crypto/types.hpp>
#include <util/buffer.hpp>
#include <util/mem.h>
#include <util/threadpool.h>
namespace llarp
{
2018-12-20 16:49:05 +00:00
static constexpr size_t EncryptedFrameOverheadSize =
PUBKEYSIZE + TUNNONCESIZE + SHORTHASHSIZE;
2019-04-29 18:06:16 +00:00
static constexpr size_t EncryptedFrameBodySize = 128 * 6;
2018-12-20 16:49:05 +00:00
static constexpr size_t EncryptedFrameSize =
EncryptedFrameOverheadSize + EncryptedFrameBodySize;
2018-06-21 12:55:02 +00:00
2018-12-20 16:49:05 +00:00
struct EncryptedFrame : public Encrypted< EncryptedFrameSize >
{
EncryptedFrame() : EncryptedFrame(EncryptedFrameBodySize)
2018-06-21 12:55:02 +00:00
{
}
2018-06-14 20:13:07 +00:00
EncryptedFrame(size_t sz)
2018-12-20 16:49:05 +00:00
: Encrypted< EncryptedFrameSize >(std::min(sz, EncryptedFrameBodySize)
+ EncryptedFrameOverheadSize)
2018-06-11 13:25:10 +00:00
{
2018-06-21 12:55:02 +00:00
}
2019-02-19 15:06:39 +00:00
void
Resize(size_t sz)
{
if(sz <= EncryptedFrameSize)
{
_sz = sz;
UpdateBuffer();
}
}
bool
DoEncrypt(const SharedSecret& shared, bool noDH = false);
2018-06-10 14:05:48 +00:00
bool
DecryptInPlace(const SecretKey& seckey);
2018-06-11 13:25:10 +00:00
bool
DoDecrypt(const SharedSecret& shared);
2018-06-11 13:25:10 +00:00
bool
EncryptInPlace(const SecretKey& seckey, const PubKey& other);
2018-06-10 14:05:48 +00:00
};
/// TODO: can only handle 1 frame at a time
2018-06-10 14:05:48 +00:00
template < typename User >
struct AsyncFrameDecrypter
{
2019-04-30 12:22:15 +00:00
using User_ptr = std::shared_ptr< User >;
using DecryptHandler = std::function< void(llarp_buffer_t*, User_ptr) >;
2018-06-10 14:05:48 +00:00
static void
Decrypt(void* user)
{
AsyncFrameDecrypter< User >* ctx =
static_cast< AsyncFrameDecrypter< User >* >(user);
if(ctx->target.DecryptInPlace(ctx->seckey))
2018-06-21 12:55:02 +00:00
{
2018-12-20 16:49:05 +00:00
auto buf = ctx->target.Buffer();
buf->cur = buf->base + EncryptedFrameOverheadSize;
2019-04-30 12:22:15 +00:00
ctx->result(buf, ctx->user);
2018-06-21 12:55:02 +00:00
}
2018-06-10 14:05:48 +00:00
else
2019-04-30 12:22:15 +00:00
ctx->result(nullptr, ctx->user);
ctx->user = nullptr;
2018-06-10 14:05:48 +00:00
}
AsyncFrameDecrypter(const SecretKey& secretkey, DecryptHandler h)
: result(h), seckey(secretkey)
2018-06-10 14:05:48 +00:00
{
}
DecryptHandler result;
2019-04-30 12:22:15 +00:00
User_ptr user;
const SecretKey& seckey;
2018-12-20 16:49:05 +00:00
EncryptedFrame target;
2018-06-20 12:34:48 +00:00
2018-06-10 14:05:48 +00:00
void
2019-07-09 13:47:24 +00:00
AsyncDecrypt(const std::shared_ptr< thread::ThreadPool >& worker,
const EncryptedFrame& frame, User_ptr u)
2018-06-10 14:05:48 +00:00
{
2019-04-30 12:22:15 +00:00
target = frame;
user = u;
2019-07-09 13:47:24 +00:00
worker->addJob(std::bind(&Decrypt, this));
2018-06-10 14:05:48 +00:00
}
};
2018-06-14 20:13:07 +00:00
} // namespace llarp
#endif