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

1 2 3

  /external/dropbear/libtomcrypt/src/misc/crypt/
crypt_find_hash_oid.c 24 if (hash_descriptor[x].name != NULL && hash_descriptor[x].OIDlen == IDlen && !XMEMCMP(hash_descriptor[x].OID, ID, sizeof(unsigned long) * IDlen)) {
crypt_unregister_cipher.c 32 if (XMEMCMP(&cipher_descriptor[x], cipher, sizeof(struct ltc_cipher_descriptor)) == 0) {
crypt_unregister_hash.c 32 if (XMEMCMP(&hash_descriptor[x], hash, sizeof(struct ltc_hash_descriptor)) == 0) {
crypt_unregister_prng.c 32 if (XMEMCMP(&prng_descriptor[x], prng, sizeof(struct ltc_prng_descriptor)) != 0) {
crypt_register_hash.c 32 if (XMEMCMP(&hash_descriptor[x], hash, sizeof(struct ltc_hash_descriptor)) == 0) {
crypt_register_prng.c 32 if (XMEMCMP(&prng_descriptor[x], prng, sizeof(struct ltc_prng_descriptor)) == 0) {
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_custom.h 45 #ifndef XMEMCMP
49 #define XMEMCMP memcmp
tomcrypt_cfg.h 39 LTC_EXPORT int LTC_CALL XMEMCMP(const void *s1, const void *s2, size_t n);
  /external/dropbear/libtomcrypt/src/encauth/ocb/
ocb_done_decrypt.c 60 if (taglen <= tagbuflen && XMEMCMP(tagbuf, tag, taglen) == 0) {
ocb_test.c 185 if (XMEMCMP(outtag, tests[x].tag, len) || XMEMCMP(outct, tests[x].ct, tests[x].ptlen)) {
208 if ((res != 1) || XMEMCMP(tests[x].pt, outct, tests[x].ptlen)) {
  /external/dropbear/libtomcrypt/src/pk/rsa/
rsa_verify_hash.c 143 (XMEMCMP(digestinfo[0].data, hash_descriptor[hash_idx].OID, sizeof(unsigned long) * hash_descriptor[hash_idx].OIDlen) == 0) &&
145 (XMEMCMP(siginfo[1].data, hash, hashlen) == 0)) {
  /external/dropbear/libtomcrypt/src/encauth/ccm/
ccm_test.c 146 if (XMEMCMP(buf, tests[x].ct, tests[x].ptlen)) {
149 if (XMEMCMP(tag, tests[x].tag, tests[x].taglen)) {
164 if (XMEMCMP(buf2, tests[x].pt, tests[x].ptlen)) {
167 if (XMEMCMP(tag2, tests[x].tag, tests[x].taglen)) {
  /external/dropbear/libtomcrypt/src/encauth/eax/
eax_decrypt_verify_memory.c 87 if (buflen >= taglen && XMEMCMP(buf, tag, taglen) == 0) {
eax_test.c 234 if (XMEMCMP(outct, tests[x].ciphertext, tests[x].msglen) || XMEMCMP(outtag, tests[x].tag, len)) {
259 if ((res != 1) || XMEMCMP(outct, tests[x].plaintext, tests[x].msglen)) {
  /external/dropbear/libtomcrypt/src/modes/f8/
f8_test_mode.c 64 if (XMEMCMP(buf, ct, sizeof(ct))) {
  /external/dropbear/libtomcrypt/src/modes/lrw/
lrw_test.c 91 if (XMEMCMP(tests[x].expected_tweak, lrw.pad, 16)) {
102 if (XMEMCMP(buf[0], tests[x].C, 16)) {
118 if (XMEMCMP(buf[1], tests[x].P, 16)) {
  /external/dropbear/libtomcrypt/src/ciphers/safer/
safer.c 399 if (XMEMCMP(buf[0], k64_ct, 8) != 0 || XMEMCMP(buf[1], k64_pt, 8) != 0) {
429 if (XMEMCMP(buf[0], sk64_ct, 8) != 0 || XMEMCMP(buf[1], sk64_pt, 8) != 0) {
471 if (XMEMCMP(buf[0], sk128_ct, 8) != 0 || XMEMCMP(buf[1], sk128_pt, 8) != 0) {
  /external/dropbear/libtomcrypt/src/ciphers/
noekeon.c 245 if (XMEMCMP(tmp[0], tests[i].ct, 16) || XMEMCMP(tmp[1], tests[i].pt, 16)) {
248 if (XMEMCMP(tmp[0], tests[i].ct, 16)) {
rc6.c 288 if (XMEMCMP(tmp[0], tests[x].ct, 16) || XMEMCMP(tmp[1], tests[x].pt, 16)) {
291 if (XMEMCMP(tmp[0], tests[x].ct, 16)) {
298 if (XMEMCMP(tmp[1], tests[x].pt, 16)) {
xtea.c 167 if (XMEMCMP(tmp[0], ct, 8) != 0 || XMEMCMP(tmp[1], pt, 8) != 0) {
  /external/dropbear/libtomcrypt/src/hashes/sha2/
sha224.c 114 if (XMEMCMP(tmp, tests[i].hash, 28) != 0) {
sha384.c 120 if (XMEMCMP(tmp, tests[i].hash, 48) != 0) {
  /external/dropbear/libtomcrypt/src/mac/f9/
f9_test.c 64 if (taglen != 4 || XMEMCMP(T, tests[x].T, 4)) {
  /external/dropbear/libtomcrypt/src/pk/asn1/der/set/
der_encode_setof.c 32 r = XMEMCMP(A->start, B->start, MIN(A->size, B->size));
  /external/dropbear/libtomcrypt/src/encauth/gcm/
gcm_test.c 350 if (XMEMCMP(out[0], tests[x].C, tests[x].ptlen)) {
361 if (XMEMCMP(T[0], tests[x].T, 16)) {
381 if (XMEMCMP(out[1], tests[x].P, tests[x].ptlen)) {
392 if (XMEMCMP(T[1], tests[x].T, 16)) {

Completed in 145 milliseconds

1 2 3