Home | History | Annotate | Download | only in blowfish

Lines Matching refs:tin

156   uint32_t tin[2];
167 tin[0] = tin0;
168 tin[1] = tin1;
169 BF_encrypt(tin, schedule);
170 tout0 = tin[0];
171 tout1 = tin[1];
179 tin[0] = tin0;
180 tin[1] = tin1;
181 BF_encrypt(tin, schedule);
182 tout0 = tin[0];
183 tout1 = tin[1];
196 tin[0] = tin0;
197 tin[1] = tin1;
198 BF_decrypt(tin, schedule);
199 tout0 = tin[0] ^ xor0;
200 tout1 = tin[1] ^ xor1;
209 tin[0] = tin0;
210 tin[1] = tin1;
211 BF_decrypt(tin, schedule);
212 tout0 = tin[0] ^ xor0;
213 tout1 = tin[1] ^ xor1;
222 tin[0] = tin[1] = 0;