mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-19 09:25:28 +00:00
22 lines
394 B
C++
22 lines
394 B
C++
#pragma once
|
|
#include <llarp/crypto/types.hpp>
|
|
|
|
#include "address.hpp"
|
|
|
|
namespace llarp::service
|
|
{
|
|
struct EncryptedName
|
|
{
|
|
SymmNonce nonce;
|
|
std::string ciphertext;
|
|
|
|
std::optional<Address>
|
|
Decrypt(std::string_view name) const;
|
|
};
|
|
|
|
/// check if an lns name complies with the registration rules
|
|
bool
|
|
is_valid_name(std::string_view name);
|
|
|
|
} // namespace llarp::service
|