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/include/llarp/encrypted_frame.hpp

13 lines
187 B
C++

#ifndef LLARP_ENCRYPTED_FRAME_HPP
#define LLARP_ENCRYPTED_FRAME_HPP
#include <llarp/mem.h>
#include <vector>
namespace llarp
{
typedef std::vector< byte_t > EncryptedFrame;
}
#endif