lokinet/llarp/encrypted_ack.hpp
2018-12-15 16:21:52 +00:00

19 lines
321 B
C++

#ifndef LLARP_ENCRYPTED_ACK_HPP
#define LLARP_ENCRYPTED_ACK_HPP
#include <encrypted.hpp>
namespace llarp
{
struct Crypto;
struct EncryptedAck : public Encrypted
{
bool
DecryptInPlace(const byte_t* symkey, const byte_t* nonce,
llarp::Crypto* crypto);
};
} // namespace llarp
#endif