HomeSort by relevance Sort by last modified time
    Searched refs:XMEMCPY (Results 1 - 25 of 47) sorted by null

1 2

  /external/dropbear/libtomcrypt/src/modes/cbc/
cbc_getiv.c 36 XMEMCPY(IV, cbc->IV, cbc->blocklen);
cbc_setiv.c 35 XMEMCPY(cbc->IV, IV, len);
  /external/dropbear/libtomcrypt/src/modes/cfb/
cfb_getiv.c 36 XMEMCPY(IV, cfb->IV, cfb->blocklen);
  /external/dropbear/libtomcrypt/src/modes/ctr/
ctr_getiv.c 36 XMEMCPY(IV, ctr->ctr, ctr->blocklen);
ctr_setiv.c 44 XMEMCPY(ctr->ctr, IV, len);
  /external/dropbear/libtomcrypt/src/modes/f8/
f8_getiv.c 36 XMEMCPY(IV, f8->IV, f8->blocklen);
  /external/dropbear/libtomcrypt/src/modes/lrw/
lrw_getiv.c 37 XMEMCPY(IV, lrw->IV, 16);
lrw_setiv.c 46 XMEMCPY(lrw->IV, IV, 16);
55 XMEMCPY(T, &lrw->PC[0][IV[0]][0], 16);
67 XMEMCPY(lrw->pad, T, 16);
  /external/dropbear/libtomcrypt/src/modes/ofb/
ofb_getiv.c 36 XMEMCPY(IV, ofb->IV, ofb->blocklen);
  /external/dropbear/libtomcrypt/src/encauth/gcm/
gcm_mult_h.c 36 XMEMCPY(T, &gcm->PC[0][I[0]][0], 16);
52 XMEMCPY(I, T, 16);
gcm_add_aad.c 70 XMEMCPY(gcm->Y, gcm->X, 16);
73 XMEMCPY(gcm->Y, gcm->buf, 12);
79 XMEMCPY(gcm->Y_0, gcm->Y, 16);
  /external/dropbear/libtomcrypt/src/pk/ecc/
ecc_ansi_x963_export.c 57 XMEMCPY(out+1, buf, numlen);
62 XMEMCPY(out+1+numlen, buf, numlen);
  /external/dropbear/libtomcrypt/src/misc/crypt/
crypt_register_hash.c 41 XMEMCPY(&hash_descriptor[x], hash, sizeof(struct ltc_hash_descriptor));
crypt_register_prng.c 41 XMEMCPY(&prng_descriptor[x], prng, sizeof(struct ltc_prng_descriptor));
crypt_fsa.c 28 XMEMCPY(&ltc_mp, mp, sizeof(ltc_mp));
crypt_register_cipher.c 41 XMEMCPY(&cipher_descriptor[x], cipher, sizeof(struct ltc_cipher_descriptor));
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_custom.h 39 #ifndef XMEMCPY
43 #define XMEMCPY memcpy
tomcrypt_macros.h 135 { ulong32 __t = (x); XMEMCPY(y, &__t, 4); }
138 XMEMCPY(&(x), y, 4);
155 { ulong32 __t = (x); XMEMCPY(y, &__t, 4); }
158 { XMEMCPY(&(x), y, 4); x &= 0xFFFFFFFF; }
161 { ulong64 __t = (x); XMEMCPY(y, &__t, 8); }
164 { XMEMCPY(&(x), y, 8); }
196 { ulong32 __t = (x); XMEMCPY(y, &__t, 4); }
199 XMEMCPY(&(x), y, 4);
216 { ulong32 __t = (x); XMEMCPY(y, &__t, 4); }
219 { XMEMCPY(&(x), y, 4); x &= 0xFFFFFFFF;
    [all...]
  /external/dropbear/libtomcrypt/src/pk/pkcs1/
pkcs_1_oaep_encode.c 107 XMEMCPY(DB+x, msg, msglen);
146 XMEMCPY(out+x, seed, hLen);
148 XMEMCPY(out+x, DB, modulus_len - hLen - 1);
pkcs_1_v1_5_decode.c 97 XMEMCPY(out, &msg[2 + ps_len + 1], *outlen);
pkcs_1_oaep_decode.c 96 XMEMCPY(seed, msg + x, hLen);
100 XMEMCPY(DB, msg + x, modulus_len - hLen - 1);
164 XMEMCPY(out, DB + x, modulus_len - hLen - 1 - x);
pkcs_1_pss_encode.c 117 XMEMCPY(DB + x, salt, saltlen);
139 XMEMCPY(out + y, DB, modulus_len - hLen - 1);
143 XMEMCPY(out + y, hash, hLen);
  /external/dropbear/libtomcrypt/src/pk/asn1/der/set/
der_encode_setof.c 139 XMEMCPY(out, buf, hdrlen);
143 XMEMCPY(out+y, edges[x].start, edges[x].size);
  /external/dropbear/libtomcrypt/src/mac/omac/
omac_init.c 83 XMEMCPY(omac->Lu[1], omac->Lu[0], sizeof(omac->Lu[0]));
omac_process.c 74 XMEMCPY(omac->block + omac->buflen, in, n);

Completed in 177 milliseconds

1 2