diff options
| author | bunnei <bunneidev@gmail.com> | 2021-04-23 11:37:17 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-23 11:37:17 -0700 |
| commit | 51c787bfc1741b737a02266e9d0176945f0193f4 (patch) | |
| tree | 7fb1b4ceb464b32bd21b28a0ac2c7f57e28f2ae7 /src/core/crypto/aes_util.cpp | |
| parent | 19bbdedf00db2c611debada864821ce63f6532e4 (diff) | |
| parent | 9c5248d101033cbb47739248ddff6e638aa97235 (diff) | |
Merge pull request #6231 from lioncash/aes
aes_util: Make use of std::span
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* } template <typename Key, std::size_t KeySize> -void AESCipher<Key, KeySize>::SetIVImpl(const u8* data, std::size_t size) { - ASSERT_MSG((mbedtls_cipher_set_iv(&ctx->encryption_context, data, size) || - mbedtls_cipher_set_iv(&ctx->decryption_context, data, size)) == 0, +void AESCipher<Key, KeySize>::SetIV(std::span<const u8> data) { + ASSERT_MSG((mbedtls_cipher_set_iv(&ctx->encryption_context, data.data(), data.size()) || + mbedtls_cipher_set_iv(&ctx->decryption_context, data.data(), data.size())) == 0, "Failed to set IV on mbedtls ciphers."); } |
