Home | History | Annotate | Download | only in des

Lines Matching refs:tin

71 	DES_LONG tin[2];
84 tin0^=tout0; tin[0]=tin0;
85 tin1^=tout1; tin[1]=tin1;
86 des_encrypt1((DES_LONG *)tin,schedule,DES_ENCRYPT);
87 tout0=tin[0]; l2c(tout0,out);
88 tout1=tin[1]; l2c(tout1,out);
93 tin0^=tout0; tin[0]=tin0;
94 tin1^=tout1; tin[1]=tin1;
95 des_encrypt1((DES_LONG *)tin,schedule,DES_ENCRYPT);
96 tout0=tin[0]; l2c(tout0,out);
97 tout1=tin[1]; l2c(tout1,out);
109 c2l(in,tin0); tin[0]=tin0;
110 c2l(in,tin1); tin[1]=tin1;
111 des_encrypt1((DES_LONG *)tin,schedule,DES_DECRYPT);
112 tout0=tin[0]^xor0;
113 tout1=tin[1]^xor1;
121 c2l(in,tin0); tin[0]=tin0;
122 c2l(in,tin1); tin[1]=tin1;
123 des_encrypt1((DES_LONG *)tin,schedule,DES_DECRYPT);
124 tout0=tin[0]^xor0;
125 tout1=tin[1]^xor1;
135 tin[0]=tin[1]=0;
147 DES_LONG tin[2];
165 tin[0]=tin0;
166 tin[1]=tin1;
167 des_encrypt3((DES_LONG *)tin,ks1,ks2,ks3);
168 tout0=tin[0];
169 tout1=tin[1];
180 tin[0]=tin0;
181 tin[1]=tin1;
182 des_encrypt3((DES_LONG *)tin,ks1,ks2,ks3);
183 tout0=tin[0];
184 tout1=tin[1];
207 tin[0]=tin0;
208 tin[1]=tin1;
209 des_decrypt3((DES_LONG *)tin,ks1,ks2,ks3);
210 tout0=tin[0];
211 tout1=tin[1];
228 tin[0]=tin0;
229 tin[1]=tin1;
230 des_decrypt3((DES_LONG *)tin,ks1,ks2,ks3);
231 tout0=tin[0];
232 tout1=tin[1];
246 tin[0]=tin[1]=0;