Home
last modified time | relevance | path

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

/TwlSDK-5.1.0/build/demos.TWL/aes/ccm-compatible/src/
Dmain.c534 AES_ReverseBytes(pKey, &key, sizeof(key)); // Key in DEMO_CcmEncryptCompatible()
535 AES_ReverseBytes(pNonce, &nonce, sizeof(nonce)); // Nonce in DEMO_CcmEncryptCompatible()
580 AES_ReverseBytes(mac, mac, macSize); // MAC in DEMO_CcmEncryptCompatible()
666 AES_ReverseBytes(pKey, &key, sizeof(key)); // Key in DEMO_CcmDecryptCompatible()
667 AES_ReverseBytes(pNonce, &nonce, sizeof(nonce)); // Nonce in DEMO_CcmDecryptCompatible()
/TwlSDK-5.1.0/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.1.0/build/demos.TWL/aes/ctr-compatible/src/
Dmain.c330 AES_ReverseBytes(pKey, &key, sizeof(key)); in DEMO_CtrCompatible()
331 AES_ReverseBytes(pCounter, pCounter, sizeof(*pCounter)); in DEMO_CtrCompatible()