lokinet/llarp/crypto.hpp

12 lines
183 B
C++
Raw Normal View History

2018-04-08 12:18:16 +00:00
#ifndef LLARP_CRYPTO_HPP
#define LLARP_CRYPTO_HPP
#include <llarp/crypto.h>
2018-04-30 16:14:20 +00:00
#include <array>
2018-04-08 12:18:16 +00:00
2018-04-30 16:14:20 +00:00
namespace llarp {
typedef std::array<uint8_t, sizeof(llarp_pubkey_t)> pubkey;
2018-04-08 12:18:16 +00:00
}
#endif