mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-09 13:10:25 +00:00
12 lines
183 B
C++
12 lines
183 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
|