aboutsummaryrefslogtreecommitdiff
path: root/src/core/crypto/aes_util.cpp
AgeCommit message (Collapse)Author
2018-09-15Port #4182 from Citra: "Prefix all size_t with std::"fearlessTobi
2018-09-04aes_util: Fix error involving reads of less than 0x10Zach Hilman
Issues with block size are fixed by making all reads minimum length of 0x10
2018-08-23aes_util: Make XTSTranscode stricter about sizesZach Hilman
XTS with Nintendo Tweak will fail mysteriously if the sector size is not 0x4000. Upgrade the critical log to an assert to prevent undefined behavior.
2018-08-04aes_util: Make CalculateNintendoTweak() an internally linked functionLioncash
This function doesn't directly depend on class state, so it can be hidden entirely from the interface in the cpp file.
2018-08-04aes_util: Make Transcode() a const member functionLioncash
This doesn't modify member state, so it can be made const.
2018-08-04core/crypto: Remove unnecessary includesLioncash
2018-08-01Make XCI comply to review and style guidelinesZach Hilman
2018-08-01Extract mbedtls to cpp fileZach Hilman
2018-08-01Remove files that are not usedZach Hilman