Lines Matching refs:tempKey
1366 uint8_t tempKey[_MAX_KEY_COLUMNS][4]; in keySched() local
1372 *((uint32_t*)(tempKey[j])) = *((uint32_t*)(key[j])); in keySched()
1383 *((uint32_t*)m_expandedKey[r][t]) = *((uint32_t*)tempKey[j]); in keySched()
1396 tempKey[0][0] ^= S[tempKey[uKeyColumns-1][1]]; in keySched()
1397 tempKey[0][1] ^= S[tempKey[uKeyColumns-1][2]]; in keySched()
1398 tempKey[0][2] ^= S[tempKey[uKeyColumns-1][3]]; in keySched()
1399 tempKey[0][3] ^= S[tempKey[uKeyColumns-1][0]]; in keySched()
1400 tempKey[0][0] ^= rcon[rconpointer++]; in keySched()
1406 *((uint32_t*)tempKey[j]) ^= *((uint32_t*)tempKey[j-1]); in keySched()
1411 *((uint32_t*)tempKey[j]) ^= *((uint32_t*)tempKey[j-1]); in keySched()
1413 tempKey[uKeyColumns/2][0] ^= S[tempKey[uKeyColumns/2 - 1][0]]; in keySched()
1414 tempKey[uKeyColumns/2][1] ^= S[tempKey[uKeyColumns/2 - 1][1]]; in keySched()
1415 tempKey[uKeyColumns/2][2] ^= S[tempKey[uKeyColumns/2 - 1][2]]; in keySched()
1416 tempKey[uKeyColumns/2][3] ^= S[tempKey[uKeyColumns/2 - 1][3]]; in keySched()
1419 *((uint32_t*)tempKey[j]) ^= *((uint32_t*)tempKey[j-1]); in keySched()
1426 *((uint32_t*)m_expandedKey[r][t]) = *((uint32_t*)tempKey[j]); in keySched()