diff options
Diffstat (limited to 'src/core/crypto/aes_util.cpp')
| -rw-r--r-- | src/core/crypto/aes_util.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/crypto/aes_util.cpp b/src/core/crypto/aes_util.cpp index cb7506241..85a666de9 100644 --- a/src/core/crypto/aes_util.cpp +++ b/src/core/crypto/aes_util.cpp | |||
| @@ -119,9 +119,9 @@ void AESCipher<Key, KeySize>::XTSTranscode(const u8* src, std::size_t size, u8* | |||
| 119 | } | 119 | } |
| 120 | 120 | ||
| 121 | template <typename Key, std::size_t KeySize> | 121 | template <typename Key, std::size_t KeySize> |
| 122 | void AESCipher<Key, KeySize>::SetIVImpl(const u8* data, std::size_t size) { | 122 | void AESCipher<Key, KeySize>::SetIV(std::span<const u8> data) { |
| 123 | ASSERT_MSG((mbedtls_cipher_set_iv(&ctx->encryption_context, data, size) || | 123 | ASSERT_MSG((mbedtls_cipher_set_iv(&ctx->encryption_context, data.data(), data.size()) || |
| 124 | mbedtls_cipher_set_iv(&ctx->decryption_context, data, size)) == 0, | 124 | mbedtls_cipher_set_iv(&ctx->decryption_context, data.data(), data.size())) == 0, |
| 125 | "Failed to set IV on mbedtls ciphers."); | 125 | "Failed to set IV on mbedtls ciphers."); |
| 126 | } | 126 | } |
| 127 | 127 | ||