• Home
  • Raw
  • Download

Lines Matching refs:checksum

620     block checksum;      /* Memory correct               */  member
925 block offset, checksum; in ae_encrypt() local
933 ctx->ad_offset = ctx->checksum = zero_block(); in ae_encrypt()
945 checksum = ctx->checksum; in ae_encrypt()
956 checksum = xor_block(checksum, ptp[0]); in ae_encrypt()
959 checksum = xor_block(checksum, ptp[1]); in ae_encrypt()
962 checksum = xor_block(checksum, ptp[2]); in ae_encrypt()
966 checksum = xor_block(checksum, ptp[3]); in ae_encrypt()
970 checksum = xor_block(checksum, ptp[3]); in ae_encrypt()
973 checksum = xor_block(checksum, ptp[4]); in ae_encrypt()
976 checksum = xor_block(checksum, ptp[5]); in ae_encrypt()
979 checksum = xor_block(checksum, ptp[6]); in ae_encrypt()
982 checksum = xor_block(checksum, ptp[7]); in ae_encrypt()
1000 ctx->checksum = checksum; in ae_encrypt()
1014 checksum = xor_block(checksum, ptp[0]); in ae_encrypt()
1017 checksum = xor_block(checksum, ptp[1]); in ae_encrypt()
1020 checksum = xor_block(checksum, ptp[2]); in ae_encrypt()
1023 checksum = xor_block(checksum, ptp[3]); in ae_encrypt()
1031 checksum = xor_block(checksum, ptp[k]); in ae_encrypt()
1034 checksum = xor_block(checksum, ptp[k + 1]); in ae_encrypt()
1041 checksum = xor_block(checksum, ptp[k]); in ae_encrypt()
1049 checksum = xor_block(checksum, tmp.bl); in ae_encrypt()
1055 ta[k] = xor_block(offset, checksum); /* Part of tag gen */ in ae_encrypt()
1136 block offset, checksum; in ae_decrypt() local
1152 ctx->ad_offset = ctx->checksum = zero_block(); in ae_decrypt()
1164 checksum = ctx->checksum; in ae_decrypt()
1196 checksum = xor_block(checksum, ptp[0]); in ae_decrypt()
1198 checksum = xor_block(checksum, ptp[1]); in ae_decrypt()
1200 checksum = xor_block(checksum, ptp[2]); in ae_decrypt()
1202 checksum = xor_block(checksum, ptp[3]); in ae_decrypt()
1205 checksum = xor_block(checksum, ptp[4]); in ae_decrypt()
1207 checksum = xor_block(checksum, ptp[5]); in ae_decrypt()
1209 checksum = xor_block(checksum, ptp[6]); in ae_decrypt()
1211 checksum = xor_block(checksum, ptp[7]); in ae_decrypt()
1218 ctx->checksum = checksum; in ae_decrypt()
1265 checksum = xor_block(checksum, tmp.bl); in ae_decrypt()
1273 checksum = xor_block(checksum, ptp[6]); in ae_decrypt()
1276 checksum = xor_block(checksum, ptp[5]); in ae_decrypt()
1279 checksum = xor_block(checksum, ptp[4]); in ae_decrypt()
1282 checksum = xor_block(checksum, ptp[3]); in ae_decrypt()
1286 checksum = xor_block(checksum, ptp[2]); in ae_decrypt()
1289 checksum = xor_block(checksum, ptp[1]); in ae_decrypt()
1292 checksum = xor_block(checksum, ptp[0]); in ae_decrypt()
1297 tmp.bl = xor_block(offset, checksum); in ae_decrypt()