2021-03-09 22:24:35 +00:00
|
|
|
#pragma once
|
2018-12-12 02:15:08 +00:00
|
|
|
|
2021-03-09 22:24:35 +00:00
|
|
|
#include <llarp/config/key_manager.hpp>
|
|
|
|
#include <llarp/constants/proto.hpp>
|
|
|
|
#include <llarp/crypto/types.hpp>
|
2019-12-06 18:21:14 +00:00
|
|
|
#include <memory>
|
2021-03-09 22:24:35 +00:00
|
|
|
#include "info.hpp"
|
|
|
|
#include "intro_set.hpp"
|
|
|
|
#include "vanity.hpp"
|
|
|
|
#include <llarp/util/buffer.hpp>
|
2018-07-09 17:32:11 +00:00
|
|
|
|
2019-05-18 17:34:07 +00:00
|
|
|
#include <tuple>
|
|
|
|
|
2018-07-09 17:32:11 +00:00
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
namespace service
|
|
|
|
{
|
|
|
|
// private keys
|
2019-05-24 02:01:36 +00:00
|
|
|
struct Identity
|
2018-07-09 17:32:11 +00:00
|
|
|
{
|
2019-04-22 18:35:19 +00:00
|
|
|
SecretKey enckey;
|
|
|
|
SecretKey signkey;
|
2020-01-30 16:34:05 +00:00
|
|
|
PrivateKey derivedSignKey;
|
2019-04-22 18:35:19 +00:00
|
|
|
PQKeyPair pq;
|
2022-05-26 15:59:44 +00:00
|
|
|
uint64_t version = llarp::constants::proto_version;
|
2018-07-09 17:32:11 +00:00
|
|
|
VanityNonce vanity;
|
|
|
|
|
|
|
|
// public service info
|
|
|
|
ServiceInfo pub;
|
|
|
|
|
|
|
|
// regenerate secret keys
|
|
|
|
void
|
2019-05-28 19:45:08 +00:00
|
|
|
RegenerateKeys();
|
2018-07-09 17:32:11 +00:00
|
|
|
|
|
|
|
bool
|
2019-05-24 02:01:36 +00:00
|
|
|
BEncode(llarp_buffer_t* buf) const;
|
2018-07-09 17:32:11 +00:00
|
|
|
|
2019-12-06 18:21:14 +00:00
|
|
|
/// @param needBackup determines whether existing keys will be cycled
|
2020-09-22 19:04:31 +00:00
|
|
|
void
|
2020-09-23 11:05:37 +00:00
|
|
|
EnsureKeys(fs::path fpath, bool needBackup);
|
2018-07-09 17:32:11 +00:00
|
|
|
|
2018-08-13 23:22:31 +00:00
|
|
|
bool
|
2020-04-07 18:38:56 +00:00
|
|
|
KeyExchange(
|
|
|
|
path_dh_func dh,
|
|
|
|
SharedSecret& sharedkey,
|
|
|
|
const ServiceInfo& other,
|
|
|
|
const KeyExchangeNonce& N) const;
|
2018-08-13 23:22:31 +00:00
|
|
|
|
2018-07-09 17:32:11 +00:00
|
|
|
bool
|
2019-05-24 02:01:36 +00:00
|
|
|
DecodeKey(const llarp_buffer_t& key, llarp_buffer_t* buf);
|
2018-07-09 17:32:11 +00:00
|
|
|
|
2020-05-01 19:51:15 +00:00
|
|
|
std::optional<EncryptedIntroSet>
|
2020-01-27 21:30:41 +00:00
|
|
|
EncryptAndSignIntroSet(const IntroSet& i, llarp_time_t now) const;
|
2018-08-13 23:22:31 +00:00
|
|
|
|
|
|
|
bool
|
2019-05-28 19:45:08 +00:00
|
|
|
Sign(Signature& sig, const llarp_buffer_t& buf) const;
|
2020-09-28 15:15:07 +00:00
|
|
|
|
|
|
|
/// zero out all secret key members
|
|
|
|
void
|
|
|
|
Clear();
|
2018-07-09 17:32:11 +00:00
|
|
|
};
|
2019-05-18 17:34:07 +00: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 17:32:11 +00:00
|
|
|
} // namespace service
|
|
|
|
} // namespace llarp
|