diff options
Diffstat (limited to 'src/common/Cryptography/AES.h')
-rw-r--r-- | src/common/Cryptography/AES.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/Cryptography/AES.h b/src/common/Cryptography/AES.h index d3b9f48c552..e559be75a16 100644 --- a/src/common/Cryptography/AES.h +++ b/src/common/Cryptography/AES.h @@ -43,6 +43,7 @@ namespace Crypto void Init(Key const& key); bool Process(IV const& iv, uint8* data, size_t length, Tag& tag); + bool ProcessNoIntegrityCheck(IV const& iv, uint8* data, size_t partialLength); private: EVP_CIPHER_CTX* _ctx; |