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
300 const uint8_t *in;
303 in = key->bytes;
305 c2l(in, c);
306 c2l(in, d);
308 /* do PC1 in 47 simple operations :-)
332 * point in time to investigate */
389 * the loop. This required the DES_SPtrans values in sp.h to be
452 * loop. This required the DES_SPtrans values in sp.h to be rotated 1 bit to
544 const uint8_t *in = in_block->bytes;
547 c2l(in, l);
549 c2l(in, l);
559 void DES_ncbc_encrypt(const uint8_t *in, uint8_t *out, size_t len,
573 c2l(in, tin0);
574 c2l(in, tin1);
586 c2ln(in, tin0, tin1, len);
604 c2l(in, tin0);
606 c2l(in, tin1);
617 c2l(in, tin0);
619 c2l(in, tin1);
640 const uint8_t *in = input->bytes;
643 c2l(in, l0);
644 c2l(in, l1);
658 void DES_ede3_cbc_encrypt(const uint8_t *in, uint8_t *out, size_t len,
674 c2l(in, tin0);
675 c2l(in, tin1);
689 c2ln(in, tin0, tin1, len);
711 c2l(in, tin0);
712 c2l(in, tin1);
731 c2l(in, tin0);
732 c2l(in, tin1);
758 void DES_ede2_cbc_encrypt(const uint8_t *in, uint8_t *out, size_t len,
763 DES_ede3_cbc_encrypt(in, out, len, ks1, ks2, ks1, ivec, enc);