Lines Matching refs:ovec
41 unsigned char ovec[16]; in DES_cfb_encrypt() local
44 unsigned char *ovec = (unsigned char *)sh; in DES_cfb_encrypt() local
81 iv = &ovec[0]; in DES_cfb_encrypt()
90 memmove(ovec, ovec + num, 8); in DES_cfb_encrypt()
93 ovec[i] = ovec[i + num] << rem | in DES_cfb_encrypt()
94 ovec[i + num + 1] >> (8 - rem); in DES_cfb_encrypt()
98 iv = &ovec[0]; in DES_cfb_encrypt()
124 iv = &ovec[0]; in DES_cfb_encrypt()
133 memmove(ovec, ovec + num, 8); in DES_cfb_encrypt()
136 ovec[i] = ovec[i + num] << rem | in DES_cfb_encrypt()
137 ovec[i + num + 1] >> (8 - rem); in DES_cfb_encrypt()
141 iv = &ovec[0]; in DES_cfb_encrypt()