Lines Matching refs:htonl
1618 keyarr.ka32[i] = htonl(*(uint32_t *)(void *)&cipherKey[j]); in aes_init_keysched()
1655 buffer[0] = htonl(*(uint32_t *)(void *)&pt[0]); in aes_encrypt_block()
1656 buffer[1] = htonl(*(uint32_t *)(void *)&pt[4]); in aes_encrypt_block()
1657 buffer[2] = htonl(*(uint32_t *)(void *)&pt[8]); in aes_encrypt_block()
1658 buffer[3] = htonl(*(uint32_t *)(void *)&pt[12]); in aes_encrypt_block()
1670 *(uint32_t *)(void *)&ct[0] = htonl(buffer[0]); in aes_encrypt_block()
1671 *(uint32_t *)(void *)&ct[4] = htonl(buffer[1]); in aes_encrypt_block()
1672 *(uint32_t *)(void *)&ct[8] = htonl(buffer[2]); in aes_encrypt_block()
1673 *(uint32_t *)(void *)&ct[12] = htonl(buffer[3]); in aes_encrypt_block()
1708 buffer[0] = htonl(*(uint32_t *)(void *)&ct[0]); in aes_decrypt_block()
1709 buffer[1] = htonl(*(uint32_t *)(void *)&ct[4]); in aes_decrypt_block()
1710 buffer[2] = htonl(*(uint32_t *)(void *)&ct[8]); in aes_decrypt_block()
1711 buffer[3] = htonl(*(uint32_t *)(void *)&ct[12]); in aes_decrypt_block()
1723 *(uint32_t *)(void *)&pt[0] = htonl(buffer[0]); in aes_decrypt_block()
1724 *(uint32_t *)(void *)&pt[4] = htonl(buffer[1]); in aes_decrypt_block()
1725 *(uint32_t *)(void *)&pt[8] = htonl(buffer[2]); in aes_decrypt_block()
1726 *(uint32_t *)(void *)&pt[12] = htonl(buffer[3]); in aes_decrypt_block()