summaryrefslogtreecommitdiffstats
path: root/src/core/crypto/aes_util.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2021-04-23 15:58:38 +0200
committerLioncash <mathew1800@gmail.com>2021-04-23 15:58:41 +0200
commit9c5248d101033cbb47739248ddff6e638aa97235 (patch)
tree01099cd7611cfb9ede286bae03e33a8cfe5913bd /src/core/crypto/aes_util.h
parentMerge pull request #6223 from lat9nq/ffmpeg-external-fixes (diff)
downloadyuzu-9c5248d101033cbb47739248ddff6e638aa97235.tar
yuzu-9c5248d101033cbb47739248ddff6e638aa97235.tar.gz
yuzu-9c5248d101033cbb47739248ddff6e638aa97235.tar.bz2
yuzu-9c5248d101033cbb47739248ddff6e638aa97235.tar.lz
yuzu-9c5248d101033cbb47739248ddff6e638aa97235.tar.xz
yuzu-9c5248d101033cbb47739248ddff6e638aa97235.tar.zst
yuzu-9c5248d101033cbb47739248ddff6e638aa97235.zip
Diffstat (limited to 'src/core/crypto/aes_util.h')
-rw-r--r--src/core/crypto/aes_util.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/core/crypto/aes_util.h b/src/core/crypto/aes_util.h
index e2a304186..230451b8f 100644
--- a/src/core/crypto/aes_util.h
+++ b/src/core/crypto/aes_util.h
@@ -5,6 +5,7 @@
#pragma once
#include <memory>
+#include <span>
#include <type_traits>
#include "common/common_types.h"
#include "core/file_sys/vfs.h"
@@ -33,10 +34,7 @@ public:
AESCipher(Key key, Mode mode);
~AESCipher();
- template <typename ContiguousContainer>
- void SetIV(const ContiguousContainer& container) {
- SetIVImpl(std::data(container), std::size(container));
- }
+ void SetIV(std::span<const u8> data);
template <typename Source, typename Dest>
void Transcode(const Source* src, std::size_t size, Dest* dest, Op op) const {
@@ -60,8 +58,6 @@ public:
std::size_t sector_size, Op op);
private:
- void SetIVImpl(const u8* data, std::size_t size);
-
std::unique_ptr<CipherContext> ctx;
};
} // namespace Core::Crypto