lokinet/llarp/encrypted_ack.hpp

17 lines
303 B
C++
Raw Normal View History

2018-06-11 13:25:10 +00:00
#ifndef LLARP_ENCRYPTED_ACK_HPP
#define LLARP_ENCRYPTED_ACK_HPP
#include <encrypted.hpp>
2018-06-11 13:25:10 +00:00
namespace llarp
{
struct EncryptedAck : public Encrypted
{
bool
DecryptInPlace(const byte_t* symkey, const byte_t* nonce,
llarp::Crypto* crypto);
2018-06-11 13:25:10 +00:00
};
2018-07-09 03:34:29 +00:00
} // namespace llarp
2018-06-11 13:25:10 +00:00
#endif