HomeSort by: relevance | last modified time | path
    Searched defs:aiv (Results 1 - 7 of 7) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/crypto/modes/
wrap128.c 205 unsigned char aiv[8]; local
214 memcpy(aiv, default_aiv, 4);
216 memcpy(aiv, icv, 4); /* Standard doesn't mention this. */
218 aiv[4] = (inlen >> 24) & 0xFF;
219 aiv[5] = (inlen >> 16) & 0xFF;
220 aiv[6] = (inlen >> 8) & 0xFF;
221 aiv[7] = inlen & 0xFF;
226 * contains exactly eight octets, then prepend the AIV and encrypt
230 memcpy(out, aiv, 8);
233 ret = 16; /* AIV + padded input *
269 unsigned char aiv[8]; local
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/modes/
wrap128.c 198 unsigned char aiv[8]; local
207 memcpy(aiv, default_aiv, 4);
209 memcpy(aiv, icv, 4); /* Standard doesn't mention this. */
211 aiv[4] = (inlen >> 24) & 0xFF;
212 aiv[5] = (inlen >> 16) & 0xFF;
213 aiv[6] = (inlen >> 8) & 0xFF;
214 aiv[7] = inlen & 0xFF;
219 * contains exactly eight octets, then prepend the AIV and encrypt
223 memcpy(out, aiv, 8);
226 ret = 16; /* AIV + padded input *
262 unsigned char aiv[8]; local
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/modes/
wrap128.c 198 unsigned char aiv[8]; local
207 memcpy(aiv, default_aiv, 4);
209 memcpy(aiv, icv, 4); /* Standard doesn't mention this. */
211 aiv[4] = (inlen >> 24) & 0xFF;
212 aiv[5] = (inlen >> 16) & 0xFF;
213 aiv[6] = (inlen >> 8) & 0xFF;
214 aiv[7] = inlen & 0xFF;
219 * contains exactly eight octets, then prepend the AIV and encrypt
223 memcpy(out, aiv, 8);
226 ret = 16; /* AIV + padded input *
262 unsigned char aiv[8]; local
    [all...]
  /src/sys/arch/hppa/dev/
apic.c 163 struct apic_iv *aiv, *biv; local
173 aiv = kmem_alloc(sizeof(struct apic_iv), KM_SLEEP);
175 aiv->sc = sc;
176 aiv->ih = ih;
177 aiv->handler = handler;
178 aiv->arg = arg;
179 aiv->next = NULL;
180 aiv->cnt = cnt;
184 iv = hppa_intr_establish(pri, apic_intr, aiv, &ci->ci_ir, irq);
186 kmem_free(aiv, sizeof(*aiv))
    [all...]
  /src/crypto/external/apache2/openssl/dist/engines/
e_afalg.c 417 struct af_alg_iv *aiv; local
422 aiv = (struct af_alg_iv *)CMSG_DATA(cmsg);
423 aiv->ivlen = len;
424 memcpy(aiv->iv, iv, len);
  /src/crypto/external/bsd/openssl/dist/engines/
e_afalg.c 395 struct af_alg_iv *aiv; local
400 aiv = (struct af_alg_iv *)CMSG_DATA(cmsg);
401 aiv->ivlen = len;
402 memcpy(aiv->iv, iv, len);
  /src/crypto/external/bsd/openssl.old/dist/engines/
e_afalg.c 338 struct af_alg_iv *aiv; local
343 aiv = (struct af_alg_iv *)CMSG_DATA(cmsg);
344 aiv->ivlen = len;
345 memcpy(aiv->iv, iv, len);

Completed in 28 milliseconds