Lines Matching refs:in
347 const uint8_t *in; in DES_set_key_ex() local
350 in = key; in DES_set_key_ex()
352 c2l(in, c); in DES_set_key_ex()
353 c2l(in, d); in DES_set_key_ex()
594 void DES_ecb_encrypt_ex(const uint8_t in[8], uint8_t out[8], in DES_ecb_encrypt_ex()
597 ll[0] = CRYPTO_load_u32_le(in); in DES_ecb_encrypt_ex()
598 ll[1] = CRYPTO_load_u32_le(in + 4); in DES_ecb_encrypt_ex()
604 void DES_ncbc_encrypt(const uint8_t *in, uint8_t *out, size_t len, in DES_ncbc_encrypt() argument
607 DES_ncbc_encrypt_ex(in, out, len, schedule, ivec->bytes, enc); in DES_ncbc_encrypt()
610 void DES_ncbc_encrypt_ex(const uint8_t *in, uint8_t *out, size_t len, in DES_ncbc_encrypt_ex() argument
624 c2l(in, tin0); in DES_ncbc_encrypt_ex()
625 c2l(in, tin1); in DES_ncbc_encrypt_ex()
637 c2ln(in, tin0, tin1, len); in DES_ncbc_encrypt_ex()
655 c2l(in, tin0); in DES_ncbc_encrypt_ex()
657 c2l(in, tin1); in DES_ncbc_encrypt_ex()
668 c2l(in, tin0); in DES_ncbc_encrypt_ex()
670 c2l(in, tin1); in DES_ncbc_encrypt_ex()
692 void DES_ecb3_encrypt_ex(const uint8_t in[8], uint8_t out[8], in DES_ecb3_encrypt_ex()
697 ll[0] = CRYPTO_load_u32_le(in); in DES_ecb3_encrypt_ex()
698 ll[1] = CRYPTO_load_u32_le(in + 4); in DES_ecb3_encrypt_ex()
708 void DES_ede3_cbc_encrypt(const uint8_t *in, uint8_t *out, size_t len, in DES_ede3_cbc_encrypt() argument
713 DES_ede3_cbc_encrypt_ex(in, out, len, ks1, ks2, ks3, ivec->bytes, enc); in DES_ede3_cbc_encrypt()
716 void DES_ede3_cbc_encrypt_ex(const uint8_t *in, uint8_t *out, size_t len, in DES_ede3_cbc_encrypt_ex() argument
732 c2l(in, tin0); in DES_ede3_cbc_encrypt_ex()
733 c2l(in, tin1); in DES_ede3_cbc_encrypt_ex()
747 c2ln(in, tin0, tin1, len); in DES_ede3_cbc_encrypt_ex()
769 c2l(in, tin0); in DES_ede3_cbc_encrypt_ex()
770 c2l(in, tin1); in DES_ede3_cbc_encrypt_ex()
789 c2l(in, tin0); in DES_ede3_cbc_encrypt_ex()
790 c2l(in, tin1); in DES_ede3_cbc_encrypt_ex()
816 void DES_ede2_cbc_encrypt(const uint8_t *in, uint8_t *out, size_t len, in DES_ede2_cbc_encrypt() argument
821 DES_ede3_cbc_encrypt(in, out, len, ks1, ks2, ks1, ivec, enc); in DES_ede2_cbc_encrypt()