lokinet/llarp/service/identity.hpp

71 lines
1.6 KiB
C++
Raw Normal View History

#pragma once
2018-12-12 03:15:08 +01:00
#include <llarp/config/key_manager.hpp>
#include <llarp/constants/proto.hpp>
#include <llarp/crypto/types.hpp>
#include <memory>
#include "info.hpp"
#include "intro_set.hpp"
#include "vanity.hpp"
#include <llarp/util/buffer.hpp>
2018-07-09 19:32:11 +02:00
#include <tuple>
2018-07-09 19:32:11 +02:00
namespace llarp
{
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;
PrivateKey derivedSignKey;
PQKeyPair pq;
2022-05-26 17:59:44 +02:00
uint64_t version = llarp::constants::proto_version;
2018-07-09 19:32:11 +02:00
VanityNonce vanity;
// public service info
ServiceInfo pub;
// regenerate secret keys
void
RegenerateKeys();
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
/// @param needBackup determines whether existing keys will be cycled
void
EnsureKeys(fs::path fpath, bool needBackup);
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
std::optional<EncryptedIntroSet>
2020-01-27 22:30:41 +01:00
EncryptAndSignIntroSet(const IntroSet& i, llarp_time_t now) const;
bool
Sign(Signature& sig, const llarp_buffer_t& buf) const;
/// zero out all secret key members
void
Clear();
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