1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/llarp/service/identity.hpp

65 lines
1.4 KiB
C++
Raw Normal View History

2018-07-09 19:32:11 +02:00
#ifndef LLARP_SERVICE_IDENTITY_HPP
#define LLARP_SERVICE_IDENTITY_HPP
2018-12-12 03:15:08 +01:00
2019-05-24 04:01:36 +02:00
#include <constants/proto.hpp>
#include <crypto/types.hpp>
#include <service/info.hpp>
#include <service/intro_set.hpp>
#include <service/vanity.hpp>
2019-05-24 04:01:36 +02:00
#include <util/buffer.hpp>
2018-07-09 19:32:11 +02:00
#include <tuple>
2018-07-09 19:32:11 +02:00
namespace llarp
{
struct Crypto;
2018-07-09 19:32:11 +02:00
namespace service
{
// private keys
2019-05-24 04:01:36 +02:00
struct Identity
2018-07-09 19:32:11 +02:00
{
SecretKey enckey;
SecretKey signkey;
PQKeyPair pq;
2019-05-24 04:01:36 +02:00
uint64_t version = LLARP_PROTO_VERSION;
2018-07-09 19:32:11 +02:00
VanityNonce vanity;
// public service info
ServiceInfo pub;
// regenerate secret keys
void
RegenerateKeys(Crypto* c);
2018-07-09 19:32:11 +02:00
bool
2019-05-24 04:01:36 +02:00
BEncode(llarp_buffer_t* buf) const;
2018-07-09 19:32:11 +02:00
bool
EnsureKeys(const std::string& fpath, Crypto* c);
2018-07-09 19:32:11 +02:00
bool
KeyExchange(path_dh_func dh, SharedSecret& sharedkey,
const ServiceInfo& other, const KeyExchangeNonce& N) const;
2018-07-09 19:32:11 +02:00
bool
2019-05-24 04:01:36 +02:00
DecodeKey(const llarp_buffer_t& key, llarp_buffer_t* buf);
2018-07-09 19:32:11 +02:00
bool
SignIntroSet(IntroSet& i, Crypto* c, llarp_time_t now) const;
bool
Sign(Crypto*, Signature& sig, const llarp_buffer_t& buf) const;
2018-07-09 19:32:11 +02:00
};
inline bool
operator==(const Identity& lhs, const Identity& rhs)
{
return std::tie(lhs.enckey, lhs.signkey, lhs.pq, lhs.version, lhs.vanity)
== std::tie(rhs.enckey, rhs.signkey, rhs.pq, rhs.version, rhs.vanity);
}
2018-07-09 19:32:11 +02:00
} // namespace service
} // namespace llarp
#endif