Home
last modified time | relevance | path

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

/hal_infineon-latest/mtb-pdl-cat1/drivers/source/
Dcy_crypto_core_sha_v2.c752 Cy_Crypto_Core_V2_RBSetByte(base, hashBlockIdx, 0x80U); in Cy_Crypto_Sha1_Sha2_Finish()
764 Cy_Crypto_Core_V2_RBSetByte(base, hashBlockSize - 8U, (uint8_t)(finalMessageSizeInBits >> 56U)); in Cy_Crypto_Sha1_Sha2_Finish()
765 Cy_Crypto_Core_V2_RBSetByte(base, hashBlockSize - 7U, (uint8_t)(finalMessageSizeInBits >> 48U)); in Cy_Crypto_Sha1_Sha2_Finish()
766 Cy_Crypto_Core_V2_RBSetByte(base, hashBlockSize - 6U, (uint8_t)(finalMessageSizeInBits >> 40U)); in Cy_Crypto_Sha1_Sha2_Finish()
767 Cy_Crypto_Core_V2_RBSetByte(base, hashBlockSize - 5U, (uint8_t)(finalMessageSizeInBits >> 32U)); in Cy_Crypto_Sha1_Sha2_Finish()
768 Cy_Crypto_Core_V2_RBSetByte(base, hashBlockSize - 4U, (uint8_t)(finalMessageSizeInBits >> 24U)); in Cy_Crypto_Sha1_Sha2_Finish()
769 Cy_Crypto_Core_V2_RBSetByte(base, hashBlockSize - 3U, (uint8_t)(finalMessageSizeInBits >> 16U)); in Cy_Crypto_Sha1_Sha2_Finish()
770 Cy_Crypto_Core_V2_RBSetByte(base, hashBlockSize - 2U, (uint8_t)(finalMessageSizeInBits >> 8U)); in Cy_Crypto_Sha1_Sha2_Finish()
771 Cy_Crypto_Core_V2_RBSetByte(base, hashBlockSize - 1U, (uint8_t)(finalMessageSizeInBits)); in Cy_Crypto_Sha1_Sha2_Finish()
Dcy_crypto_core_aes_v2.c3354Cy_Crypto_Core_V2_RBSetByte(base, CY_CRYPTO_AES_BLOCK_SIZE - 4U, (uint8_t)((counter >> 24U) & 0xff… in Cy_Crypto_Core_V2_Aes_Ctr()
3355Cy_Crypto_Core_V2_RBSetByte(base, CY_CRYPTO_AES_BLOCK_SIZE - 3U, (uint8_t)((counter >> 16U) & 0xff… in Cy_Crypto_Core_V2_Aes_Ctr()
3356Cy_Crypto_Core_V2_RBSetByte(base, CY_CRYPTO_AES_BLOCK_SIZE - 2U, (uint8_t)((counter >> 8U) & 0xff… in Cy_Crypto_Core_V2_Aes_Ctr()
3357 Cy_Crypto_Core_V2_RBSetByte(base, CY_CRYPTO_AES_BLOCK_SIZE - 1U, (uint8_t)((counter) & 0xffU)); in Cy_Crypto_Core_V2_Aes_Ctr()
3375Cy_Crypto_Core_V2_RBSetByte(base, CY_CRYPTO_AES_BLOCK_SIZE - 4U, (uint8_t)((counter >> 24u) & 0xff… in Cy_Crypto_Core_V2_Aes_Ctr()
3376Cy_Crypto_Core_V2_RBSetByte(base, CY_CRYPTO_AES_BLOCK_SIZE - 3U, (uint8_t)((counter >> 16u) & 0xff… in Cy_Crypto_Core_V2_Aes_Ctr()
3377Cy_Crypto_Core_V2_RBSetByte(base, CY_CRYPTO_AES_BLOCK_SIZE - 2U, (uint8_t)((counter >> 8u) & 0xff… in Cy_Crypto_Core_V2_Aes_Ctr()
3378Cy_Crypto_Core_V2_RBSetByte(base, CY_CRYPTO_AES_BLOCK_SIZE - 1U, (uint8_t)((counter) & 0xffU)); in Cy_Crypto_Core_V2_Aes_Ctr()
3564Cy_Crypto_Core_V2_RBSetByte(base, CY_CRYPTO_AES_BLOCK_SIZE - 4U, (uint8_t)((counter >> 24U) & 0xff… in Cy_Crypto_Core_V2_Aes_Ctr_Update()
3565Cy_Crypto_Core_V2_RBSetByte(base, CY_CRYPTO_AES_BLOCK_SIZE - 3U, (uint8_t)((counter >> 16U) & 0xff… in Cy_Crypto_Core_V2_Aes_Ctr_Update()
[all …]
/hal_infineon-latest/mtb-pdl-cat1/drivers/include/
Dcy_crypto_core_hw_v2.h332 __STATIC_INLINE void Cy_Crypto_Core_V2_RBSetByte(CRYPTO_Type *base, uint32_t offset, uint8_t byte) in Cy_Crypto_Core_V2_RBSetByte() function