Lines Matching refs:inl
49 const unsigned char *in, size_t inl) in ossl_cipher_hw_tdes_ofb() argument
54 while (inl >= MAXCHUNK) { in ossl_cipher_hw_tdes_ofb()
57 inl -= MAXCHUNK; in ossl_cipher_hw_tdes_ofb()
61 if (inl > 0) { in ossl_cipher_hw_tdes_ofb()
62 DES_ede3_ofb64_encrypt(in, out, (long)inl, &tctx->ks1, &tctx->ks2, in ossl_cipher_hw_tdes_ofb()
70 const unsigned char *in, size_t inl) in ossl_cipher_hw_tdes_cfb() argument
75 while (inl >= MAXCHUNK) { in ossl_cipher_hw_tdes_cfb()
80 inl -= MAXCHUNK; in ossl_cipher_hw_tdes_cfb()
84 if (inl > 0) { in ossl_cipher_hw_tdes_cfb()
85 DES_ede3_cfb64_encrypt(in, out, (long)inl, in ossl_cipher_hw_tdes_cfb()
98 const unsigned char *in, size_t inl) in ossl_cipher_hw_tdes_cfb1() argument
106 inl *= 8; in ossl_cipher_hw_tdes_cfb1()
107 for (n = 0; n < inl; ++n) { in ossl_cipher_hw_tdes_cfb1()
120 const unsigned char *in, size_t inl) in ossl_cipher_hw_tdes_cfb8() argument
124 while (inl >= MAXCHUNK) { in ossl_cipher_hw_tdes_cfb8()
128 inl -= MAXCHUNK; in ossl_cipher_hw_tdes_cfb8()
132 if (inl > 0) in ossl_cipher_hw_tdes_cfb8()
133 DES_ede3_cfb_encrypt(in, out, 8, (long)inl, in ossl_cipher_hw_tdes_cfb8()