Home
last modified time | relevance | path

Searched refs:ovec (Results 1 – 3 of 3) sorted by relevance

/openbsd/lib/libcrypto/des/
H A Ddes.c249 iv = &ovec[0]; in DES_ede3_cfb_encrypt()
255 memmove(ovec, ovec + num/8, in DES_ede3_cfb_encrypt()
261 ovec[i] |= ovec[i + 1] >> in DES_ede3_cfb_encrypt()
265 iv = &ovec[0]; in DES_ede3_cfb_encrypt()
287 iv = &ovec[0]; in DES_ede3_cfb_encrypt()
293 memmove(ovec, ovec + num/8, in DES_ede3_cfb_encrypt()
299 ovec[i] |= ovec[i + 1] >> in DES_ede3_cfb_encrypt()
445 memmove(ovec, ovec + num, 8); in DES_cfb_encrypt()
448 ovec[i] = ovec[i + num] << rem | in DES_cfb_encrypt()
487 memmove(ovec, ovec + num, 8); in DES_cfb_encrypt()
[all …]
/openbsd/lib/libcrypto/modes/
H A Dcfb128.c191 unsigned char ovec[16*2 + 1]; /* +1 because we dererefence (but don't use) one byte off the end */ in cfbr_encrypt_block() local
197 memcpy(ovec, ivec, 16); in cfbr_encrypt_block()
203 out[n] = (ovec[16 + n] = in[n] ^ ivec[n]); in cfbr_encrypt_block()
206 out[n] = (ovec[16 + n] = in[n]) ^ ivec[n]; in cfbr_encrypt_block()
211 memcpy(ivec, ovec + num, 16); in cfbr_encrypt_block()
214 ivec[n] = ovec[n + num] << rem | in cfbr_encrypt_block()
215 ovec[n + num + 1] >> (8 - rem); in cfbr_encrypt_block()
/openbsd/sys/kern/
H A Dkern_sig.c248 struct sigaction ovec; in sys_sigaction() local
294 ovec = vec; in sys_sigaction()
309 ktrsigaction(p, &ovec); in sys_sigaction()