Home
last modified time | relevance | path

Searched refs:AES_ReverseBytes (Results 1 – 3 of 3) sorted by relevance

/TwlSDK-5.4/build/demos.TWL/aes/ccm-compatible/src/
Dmain.c528 AES_ReverseBytes(pKey, &key, sizeof(key)); // Key in DEMO_CcmEncryptCompatible()
529 AES_ReverseBytes(pNonce, &nonce, sizeof(nonce)); // Nonce in DEMO_CcmEncryptCompatible()
574 AES_ReverseBytes(mac, mac, macSize); // MAC in DEMO_CcmEncryptCompatible()
660 AES_ReverseBytes(pKey, &key, sizeof(key)); // Key in DEMO_CcmDecryptCompatible()
661 AES_ReverseBytes(pNonce, &nonce, sizeof(nonce)); // Nonce in DEMO_CcmDecryptCompatible()
/TwlSDK-5.4/include/twl/aes/ARM9/
Daes_inline.h63 SDK_INLINE void AES_ReverseBytes(const void* src, void* dst, u32 size) in AES_ReverseBytes() function
/TwlSDK-5.4/build/demos.TWL/aes/ctr-compatible/src/
Dmain.c324 AES_ReverseBytes(pKey, &key, sizeof(key)); in DEMO_CtrCompatible()
325 AES_ReverseBytes(pCounter, pCounter, sizeof(*pCounter)); in DEMO_CtrCompatible()