mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-15 12:13:24 +00:00
13 lines
187 B
C++
13 lines
187 B
C++
#ifndef LLARP_CRYPTO_HPP
|
|
#define LLARP_CRYPTO_HPP
|
|
|
|
#include <llarp/crypto.h>
|
|
#include <array>
|
|
|
|
namespace llarp
|
|
{
|
|
typedef std::array< uint8_t, sizeof(llarp_pubkey_t) > pubkey;
|
|
}
|
|
|
|
#endif
|