Home | History | Annotate | Download | only in blowfish

Lines Matching defs:in

10  * apply to all code found in this distribution, be it the RC4, RSA,
15 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * If this package is used in a product, Eric Young should be given attribution
19 * This can be in the form of a textual message at program startup or
20 * in documentation (online or textual) provided with the package.
22 * Redistribution and use in source and binary forms, with or without
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
43 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
136 void BF_ecb_encrypt(const uint8_t *in, uint8_t *out,
140 n2l(in, d[0]);
141 n2l(in, d[1]);
151 void BF_cbc_encrypt(const uint8_t *in, uint8_t *out, long length,
163 n2l(in, tin0);
164 n2l(in, tin1);
176 n2ln(in, tin0, tin1, l + 8);
194 n2l(in, tin0);
195 n2l(in, tin1);
207 n2l(in, tin0);
208 n2l(in, tin1);
441 uint32_t *p, ri, in[2];
479 in[0] = 0L;
480 in[1] = 0L;
482 BF_encrypt(in, key);
483 p[i] = in[0];
484 p[i + 1] = in[1];
489 BF_encrypt(in, key);
490 p[i] = in[0];
491 p[i + 1] = in[1];