Lines Matching +full:0 +full:x0c
133 .out = "\x9c\xca\xd6\xd4\x68\x77\x0c\xd5"
163 .out = "\x0c\x60\xc8\x0f\x96\x1f\x0e\x71\xf3\xa9"
221 .key = "pass\0word",
223 .salt = "sa\0lt",
237 .nkey = 0,
288 .out = "\x13\x3b\x88\x0c\x0e\x52\xa2\x41"
322 .out = "\xd6\xcb\xd8\xa7\xdb\x0c\xa2\x2a"
344 #if 0
355 "\x53\x58\xf4\x0c\x39\xe7\x80\x89"
367 return '0' + i; in hex()
378 for (i = 0; i < len; i++) { in hex_string()
379 hexstr[i * 2] = hex((bytes[i] >> 4) & 0xf); in hex_string()
380 hexstr[i * 2 + 1] = hex(bytes[i] & 0xf); in hex_string()
382 hexstr[len * 2] = '\0'; in hex_string()
418 memset(key, 0x5d, sizeof(key)); in test_pbkdf_timing_sha256()
419 memset(salt, 0x7c, sizeof(salt)); in test_pbkdf_timing_sha256()
437 g_assert(qcrypto_init(NULL) == 0); in main()
439 for (i = 0; i < G_N_ELEMENTS(test_data); i++) { in main()