Searched refs:ovec (Results 1 – 5 of 5) sorted by relevance
| /freebsd/crypto/openssl/crypto/des/ |
| H A D | cfb_enc.c | 40 unsigned char ovec[16]; in DES_cfb_encrypt() local 43 unsigned char *ovec = (unsigned char *)sh; in DES_cfb_encrypt() local 80 iv = &ovec[0]; in DES_cfb_encrypt() 89 memmove(ovec, ovec + num, 8); in DES_cfb_encrypt() 92 ovec[i] = ovec[i + num] << rem | ovec[i + num + 1] >> (8 - rem); in DES_cfb_encrypt() 96 iv = &ovec[0]; in DES_cfb_encrypt() 122 iv = &ovec[0]; in DES_cfb_encrypt() 131 memmove(ovec, ovec + num, 8); in DES_cfb_encrypt() 134 ovec[i] = ovec[i + num] << rem | ovec[i + num + 1] >> (8 - rem); in DES_cfb_encrypt() 138 iv = &ovec[0]; in DES_cfb_encrypt()
|
| H A D | cfb64ede.c | 101 unsigned char ovec[16]; in DES_ede3_cfb_encrypt() local 131 iv = &ovec[0]; in DES_ede3_cfb_encrypt() 137 memmove(ovec, ovec + num / 8, 8 + (num % 8 ? 1 : 0)); in DES_ede3_cfb_encrypt() 141 ovec[i] <<= num % 8; in DES_ede3_cfb_encrypt() 142 ovec[i] |= ovec[i + 1] >> (8 - num % 8); in DES_ede3_cfb_encrypt() 144 iv = &ovec[0]; in DES_ede3_cfb_encrypt() 168 iv = &ovec[0]; in DES_ede3_cfb_encrypt() 174 memmove(ovec, ovec + num / 8, 8 + (num % 8 ? 1 : 0)); in DES_ede3_cfb_encrypt() 178 ovec[i] <<= num % 8; in DES_ede3_cfb_encrypt() 179 ovec[i] |= ovec[i + 1] >> (8 - num % 8); in DES_ede3_cfb_encrypt() [all …]
|
| /freebsd/crypto/openssl/crypto/modes/ |
| H A D | cfb128.c | 153 unsigned char ovec[16 * 2 + 1]; /* +1 because we dereference (but don't in cfbr_encrypt_block() local 160 memcpy(ovec, ivec, 16); in cfbr_encrypt_block() 166 out[n] = (ovec[16 + n] = in[n] ^ ivec[n]); in cfbr_encrypt_block() 169 out[n] = (ovec[16 + n] = in[n]) ^ ivec[n]; in cfbr_encrypt_block() 174 memcpy(ivec, ovec + num, 16); in cfbr_encrypt_block() 177 ivec[n] = ovec[n + num] << rem | ovec[n + num + 1] >> (8 - rem); in cfbr_encrypt_block()
|
| /freebsd/contrib/ntp/libntp/ |
| H A D | syssignal.c | 36 struct sigaction ovec; in signal_no_reset() local 53 n = sigaction(sig, &vec, &ovec); in signal_no_reset()
|
| /freebsd/contrib/tnftp/src/ |
| H A D | progressbar.c | 422 struct sigvec vec, ovec; local 427 if (sigvec(sig, &vec, &ovec) < 0) 429 return (ovec.sv_handler);
|