Searched refs:ovec (Results 1 - 6 of 6) sorted by relevance

/freebsd-9.3-release/crypto/openssl/crypto/des/
H A Dcfb_enc.c84 unsigned char ovec[16]; local
87 unsigned char *ovec = (unsigned char *)sh; local
124 iv = &ovec[0];
133 memmove(ovec, ovec + num, 8);
136 ovec[i] = ovec[i + num] << rem |
137 ovec[i + num + 1] >> (8 - rem);
141 iv = &ovec[0];
167 iv = &ovec[
[all...]
H A Dcfb64ede.c155 unsigned char ovec[16]; local
185 iv = &ovec[0];
190 /* shift ovec left most of the bits... */
191 memmove(ovec, ovec + num / 8, 8 + (num % 8 ? 1 : 0));
195 ovec[i] <<= num % 8;
196 ovec[i] |= ovec[i + 1] >> (8 - num % 8);
198 iv = &ovec[0];
222 iv = &ovec[
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/camellia/
H A Dcmll_cfb.c172 unsigned char ovec[CAMELLIA_BLOCK_SIZE * 2]; local
178 memcpy(ovec, ivec, CAMELLIA_BLOCK_SIZE);
184 out[n] = (ovec[CAMELLIA_BLOCK_SIZE + n] = in[n] ^ ivec[n]);
187 out[n] = (ovec[CAMELLIA_BLOCK_SIZE + n] = in[n]) ^ ivec[n];
188 /* shift ovec left... */
192 memcpy(ivec, ovec + num, CAMELLIA_BLOCK_SIZE);
195 ivec[n] = ovec[n + num] << rem | ovec[n + num + 1] >> (8 - rem);
197 /* it is not necessary to cleanse ovec, since the IV is not secret */
/freebsd-9.3-release/crypto/openssl/crypto/aes/
H A Daes_cfb.c170 unsigned char ovec[AES_BLOCK_SIZE * 2]; local
176 memcpy(ovec, ivec, AES_BLOCK_SIZE);
182 out[n] = (ovec[AES_BLOCK_SIZE + n] = in[n] ^ ivec[n]);
185 out[n] = (ovec[AES_BLOCK_SIZE + n] = in[n]) ^ ivec[n];
186 /* shift ovec left... */
190 memcpy(ivec, ovec + num, AES_BLOCK_SIZE);
193 ivec[n] = ovec[n + num] << rem | ovec[n + num + 1] >> (8 - rem);
195 /* it is not necessary to cleanse ovec, since the IV is not secret */
/freebsd-9.3-release/contrib/ntp/libntp/
H A Dsyssignal.c36 struct sigaction ovec; local
53 n = sigaction(sig, &vec, &ovec);
/freebsd-9.3-release/contrib/tnftp/src/
H A Dprogressbar.c422 struct sigvec vec, ovec; local
427 if (sigvec(sig, &vec, &ovec) < 0)
429 return (ovec.sv_handler);

Completed in 111 milliseconds