aboutsummaryrefslogtreecommitdiff
path: root/src/common/Cryptography/AES.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/Cryptography/AES.h')
-rw-r--r--src/common/Cryptography/AES.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/Cryptography/AES.h b/src/common/Cryptography/AES.h
index c091ef670dc..3764bba1094 100644
--- a/src/common/Cryptography/AES.h
+++ b/src/common/Cryptography/AES.h
@@ -33,7 +33,7 @@ public:
void Init(uint8 const* key);
- bool Process(uint8 const* iv, uint8* data, std::size_t length, uint8* tag);
+ bool Process(uint8 const* iv, uint8* data, std::size_t length, uint8(&tag)[12]);
private:
EVP_CIPHER_CTX* _ctx;