mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
ac1486d0be
Step 1 of removing abseil from lokinet. For the most part this is a drop-in replacement, but there are also a few changes here to the JSONRPC layer that were needed to work around current gcc 10 dev snapshot: - JSONRPC returns a json now instead of an optional<json>. It doesn't make any sense to have a json rpc call that just closes the connection with returning anything. Invoked functions can return a null (default constructed) result now if they don't have anything to return (such a null value won't be added as "result").
67 lines
1.6 KiB
C++
67 lines
1.6 KiB
C++
#ifndef LLARP_SERVICE_IDENTITY_HPP
|
|
#define LLARP_SERVICE_IDENTITY_HPP
|
|
|
|
#include <config/key_manager.hpp>
|
|
#include <constants/proto.hpp>
|
|
#include <crypto/types.hpp>
|
|
#include <memory>
|
|
#include <service/info.hpp>
|
|
#include <service/intro_set.hpp>
|
|
#include <service/vanity.hpp>
|
|
#include <util/buffer.hpp>
|
|
|
|
#include <tuple>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace service
|
|
{
|
|
// private keys
|
|
struct Identity
|
|
{
|
|
SecretKey enckey;
|
|
SecretKey signkey;
|
|
PrivateKey derivedSignKey;
|
|
PQKeyPair pq;
|
|
uint64_t version = LLARP_PROTO_VERSION;
|
|
VanityNonce vanity;
|
|
|
|
// public service info
|
|
ServiceInfo pub;
|
|
|
|
// regenerate secret keys
|
|
void
|
|
RegenerateKeys();
|
|
|
|
bool
|
|
BEncode(llarp_buffer_t* buf) const;
|
|
|
|
/// @param needBackup determines whether existing keys will be cycled
|
|
bool
|
|
EnsureKeys(const std::string& fpath, bool needBackup);
|
|
|
|
bool
|
|
KeyExchange(path_dh_func dh, SharedSecret& sharedkey,
|
|
const ServiceInfo& other, const KeyExchangeNonce& N) const;
|
|
|
|
bool
|
|
DecodeKey(const llarp_buffer_t& key, llarp_buffer_t* buf);
|
|
|
|
nonstd::optional< EncryptedIntroSet >
|
|
EncryptAndSignIntroSet(const IntroSet& i, llarp_time_t now) const;
|
|
|
|
bool
|
|
Sign(Signature& sig, const llarp_buffer_t& buf) const;
|
|
};
|
|
|
|
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);
|
|
}
|
|
} // namespace service
|
|
} // namespace llarp
|
|
|
|
#endif
|