mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
57 lines
1.2 KiB
C++
57 lines
1.2 KiB
C++
#ifndef LLARP_SERVICE_HPP
|
|
#define LLARP_SERVICE_HPP
|
|
#include <llarp/aligned.hpp>
|
|
#include <llarp/bencode.hpp>
|
|
#include <llarp/crypto.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace service
|
|
{
|
|
/// hidden service address
|
|
typedef llarp::AlignedBuffer< 32 > Address;
|
|
|
|
typedef llarp::AlignedBuffer< 16 > VanityNonce;
|
|
|
|
struct Info : public llarp::IBEncodeMessage
|
|
{
|
|
llarp::PubKey enckey;
|
|
llarp::PubKey signkey;
|
|
uint64_t version = 0;
|
|
VanityNonce vanity;
|
|
|
|
/// calculate our address
|
|
void
|
|
CalculateAddress(llarp_crypto* c, Address& addr) const;
|
|
|
|
bool
|
|
BEncode(llarp_buffer_t* buf) const;
|
|
|
|
bool
|
|
DecodeKey(llarp_buffer_t key, llarp_buffer_t* buf);
|
|
};
|
|
|
|
// private keys
|
|
struct Identity : public llarp::IBEncodeMessage
|
|
{
|
|
llarp::SecretKey enckey;
|
|
llarp::SecretKey signkey;
|
|
uint64_t version = 0;
|
|
VanityNonce vanity;
|
|
|
|
// public service info
|
|
Info pub;
|
|
|
|
// regenerate secret keys
|
|
void
|
|
RegenerateKeys(llarp_crypto* c);
|
|
|
|
// load from file
|
|
bool
|
|
LoadFromFile(const std::string& fpath);
|
|
};
|
|
|
|
}; // namespace service
|
|
} // namespace llarp
|
|
|
|
#endif |