1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/include/llarp/encrypted_ack.hpp

14 lines
305 B
C++
Raw Normal View History

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