Lines Matching refs:tin
66 DES_LONG tin[2]; in DES_pcbc_encrypt() local
87 tin[0]=sin0^xor0; in DES_pcbc_encrypt()
88 tin[1]=sin1^xor1; in DES_pcbc_encrypt()
89 DES_encrypt1((DES_LONG *)tin,schedule,DES_ENCRYPT); in DES_pcbc_encrypt()
90 tout0=tin[0]; in DES_pcbc_encrypt()
91 tout1=tin[1]; in DES_pcbc_encrypt()
105 tin[0]=sin0; in DES_pcbc_encrypt()
106 tin[1]=sin1; in DES_pcbc_encrypt()
107 DES_encrypt1((DES_LONG *)tin,schedule,DES_DECRYPT); in DES_pcbc_encrypt()
108 tout0=tin[0]^xor0; in DES_pcbc_encrypt()
109 tout1=tin[1]^xor1; in DES_pcbc_encrypt()
121 tin[0]=tin[1]=0; in DES_pcbc_encrypt()