Add initial WiiConnect24 support

This commit is contained in:
SketchMaster2001 2022-09-18 23:09:20 -04:00 committed by Admiral H. Curtiss
commit e413d7f5ec
No known key found for this signature in database
GPG key ID: F051B4C4044F33FB
12 changed files with 863 additions and 1 deletions

View file

@ -46,4 +46,7 @@ public:
std::unique_ptr<Context> CreateContextEncrypt(const u8* key);
std::unique_ptr<Context> CreateContextDecrypt(const u8* key);
// OFB decryption for WiiConnect24
void CryptOFB(const u8* key, const u8* iv, u8* iv_out, const u8* buf_in, u8* buf_out, size_t size);
} // namespace Common::AES