I'm using the example code from the related question to do AES decryption in a bootloader without RTOS, on SDK 3.20.00.68 (which we can't change at the moment). I'm including prcm.h and aes.h, and then running the example code right at the beginning of main(). It compiles, and I can run it up until the call to AESWriteToKeyStore(). It never returns from this function, and when I pause the debugger, it's stuck in FaultISR(). I commented that function out just to see if any of the AES functions worked, and some of them do, but AESWriteToKeyStore(), AESReadFromKeyStore(), AESStartDMAOperation(), and AESWaitForIRQFlags() at least are all one-way tickets to FaultISR(). What am I missing for this to work?