mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
Wipe all traces of OpenSSL's AES implementation. Use polarssl instead.
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
|
||||
#include "Volume.h"
|
||||
#include "Blob.h"
|
||||
#include "Crypto/aes.h"
|
||||
#include <polarssl/aes.h>
|
||||
|
||||
// --- this volume type is used for encrypted Wii images ---
|
||||
|
||||
@ -38,7 +38,7 @@ private:
|
||||
IBlobReader* m_pReader;
|
||||
|
||||
u8* m_pBuffer;
|
||||
AES_KEY m_AES_KEY;
|
||||
aes_context* m_AES_ctx;
|
||||
|
||||
u64 m_VolumeOffset;
|
||||
u64 dataOffset;
|
||||
|
Reference in New Issue
Block a user