Searched refs:laneAsBytes (Results 1 – 1 of 1) sorted by relevance
88 UINT8 laneAsBytes[8]; in KeccakP1600_SetBytesInLaneToZero() local93 memset(laneAsBytes, 0xFF, offset); in KeccakP1600_SetBytesInLaneToZero()94 memset(laneAsBytes+offset, 0x00, length); in KeccakP1600_SetBytesInLaneToZero()95 memset(laneAsBytes+offset+length, 0xFF, 8-offset-length); in KeccakP1600_SetBytesInLaneToZero()97 low = *((UINT32*)(laneAsBytes+0)); in KeccakP1600_SetBytesInLaneToZero()98 high = *((UINT32*)(laneAsBytes+4)); in KeccakP1600_SetBytesInLaneToZero()100 low = laneAsBytes[0] in KeccakP1600_SetBytesInLaneToZero()101 | ((UINT32)(laneAsBytes[1]) << 8) in KeccakP1600_SetBytesInLaneToZero()102 | ((UINT32)(laneAsBytes[2]) << 16) in KeccakP1600_SetBytesInLaneToZero()103 | ((UINT32)(laneAsBytes[3]) << 24); in KeccakP1600_SetBytesInLaneToZero()[all …]