You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/service/name.hpp

21 lines
393 B
C++

#pragma once
#include <crypto/types.hpp>
#include <service/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
NameIsValid(std::string_view name);
} // namespace llarp::service