/external/dropbear/libtomcrypt/src/mac/omac/ |
omac_test.c | 93 if (XMEMCMP(out, tests[x].tag, 16) != 0) {
|
/external/dropbear/libtomcrypt/src/mac/pelican/ |
pelican_test.c | 102 if (XMEMCMP(out, tests[x].T, 16)) {
|
/external/dropbear/libtomcrypt/src/mac/xcbc/ |
xcbc_test.c | 114 if (taglen != 16 || XMEMCMP(T, tests[x].T, 16)) {
|
/external/dropbear/libtomcrypt/src/modes/ctr/ |
ctr_test.c | 70 if (XMEMCMP(buf, tests[x].ct, tests[x].msglen)) {
|
/external/dropbear/libtomcrypt/src/pk/pkcs1/ |
pkcs_1_oaep_decode.c | 139 if (XMEMCMP(seed, DB, hLen) != 0) {
|
pkcs_1_pss_decode.c | 152 if (XMEMCMP(mask, hash, hLen) == 0) {
|
/external/dropbear/libtomcrypt/src/prngs/ |
rc4.c | 250 if (XMEMCMP(dst, tests[x].ct, 8)) {
|
sober128.c | 482 if (XMEMCMP(dst, tests[x].out, tests[x].len)) {
|
/external/dropbear/libtomcrypt/src/ciphers/ |
kasumi.c | 306 if (XMEMCMP(tests[x].pt, buf[1], 8) || XMEMCMP(tests[x].ct, buf[0], 8)) {
|
rc2.c | 318 if (XMEMCMP(tmp[0], tests[x].ct, 8) != 0 || XMEMCMP(tmp[1], tests[x].pt, 8) != 0) {
|
rc5.c | 278 if (XMEMCMP(tmp[0], tests[x].ct, 8) != 0 || XMEMCMP(tmp[1], tests[x].pt, 8) != 0) {
|
skipjack.c | 301 if (XMEMCMP(buf[0], tests[x].ct, 8) != 0 || XMEMCMP(buf[1], tests[x].pt, 8) != 0) {
|
blowfish.c | 551 if ((XMEMCMP(tmp[0], tests[x].ct, 8) != 0) || (XMEMCMP(tmp[1], tests[x].pt, 8) != 0)) {
|
kseed.c | 348 if (XMEMCMP(buf[0], tests[x].ct, 16) || XMEMCMP(buf[1], tests[x].pt, 16)) {
|
/external/dropbear/libtomcrypt/src/ciphers/twofish/ |
twofish.c | 666 if (XMEMCMP(tmp[0], tests[i].ct, 16) != 0 || XMEMCMP(tmp[1], tests[i].pt, 16) != 0) { 668 printf("Twofish failed test %d, %d, %d\n", i, XMEMCMP(tmp[0], tests[i].ct, 16), XMEMCMP(tmp[1], tests[i].pt, 16));
|
/external/dropbear/libtomcrypt/src/hashes/chc/ |
chc.c | 283 if (XMEMCMP(out, tests[x].md, tests[x].len)) {
|
/external/dropbear/libtomcrypt/src/hashes/ |
md2.c | 238 if (XMEMCMP(buf, tests[i].md, 16) != 0) {
|
md4.c | 292 if (XMEMCMP(digest, cases[i].digest, 16) != 0) {
|
sha1.c | 274 if (XMEMCMP(tmp, tests[i].hash, 20) != 0) {
|
/external/dropbear/libtomcrypt/src/mac/pmac/ |
pmac_test.c | 141 if (XMEMCMP(outtag, tests[x].tag, len)) {
|
/external/dropbear/libtomcrypt/src/ciphers/aes/ |
aes.c | 693 if (XMEMCMP(tmp[0], tests[i].ct, 16) || XMEMCMP(tmp[1], tests[i].pt, 16)) { 696 if (XMEMCMP(tmp[0], tests[i].ct, 16)) {
|
/external/dropbear/libtomcrypt/src/hashes/sha2/ |
sha512.c | 300 if (XMEMCMP(tmp, tests[i].hash, 64) != 0) {
|
/external/dropbear/libtomcrypt/src/hashes/whirl/ |
whirl.c | 293 if (XMEMCMP(tmp, tests[i].hash, 64) != 0) {
|
/external/dropbear/libtomcrypt/src/mac/hmac/ |
hmac_test.c | 280 if(XMEMCMP(digest, cases[i].digest, (size_t)hash_descriptor[hash].hashsize) != 0) {
|
/external/dropbear/libtomcrypt/src/ciphers/safer/ |
saferp.c | 510 if (XMEMCMP(tmp[0], tests[i].ct, 16) || XMEMCMP(tmp[1], tests[i].pt, 16)) {
|