Lines Matching refs:tout1
26 register DES_LONG tout0, tout1, xor0, xor1; in DES_xcbc_encrypt() local
44 c2l(iv, tout1); in DES_xcbc_encrypt()
50 tin1 ^= tout1 ^ inW1; in DES_xcbc_encrypt()
55 tout1 = tin[1] ^ outW1; in DES_xcbc_encrypt()
56 l2c(tout1, out); in DES_xcbc_encrypt()
62 tin1 ^= tout1 ^ inW1; in DES_xcbc_encrypt()
67 tout1 = tin[1] ^ outW1; in DES_xcbc_encrypt()
68 l2c(tout1, out); in DES_xcbc_encrypt()
72 l2c(tout1, iv); in DES_xcbc_encrypt()
83 tout1 = tin[1] ^ xor1 ^ inW1; in DES_xcbc_encrypt()
85 l2c(tout1, out); in DES_xcbc_encrypt()
96 tout1 = tin[1] ^ xor1 ^ inW1; in DES_xcbc_encrypt()
97 l2cn(tout0, tout1, out, l + 8); in DES_xcbc_encrypt()
106 tin0 = tin1 = tout0 = tout1 = xor0 = xor1 = 0; in DES_xcbc_encrypt()