Lines Matching +full:0 +full:x37
64 "\x33\xec\xc0\xe2\xe1\xf7\x08\x37",
149 "\xe7\xfe\x37\xa0\xc4\x1e\x02\xc2"
164 "\xb5\x24\xaf\x60\x12\x06\x2f\xe0\x37\xa6",
221 .key = "pass\0word",
223 .salt = "sa\0lt",
225 .out = "\x56\xfa\x6a\xa7\x55\x48\x09\x9d\xcc\x37"
237 .nkey = 0,
240 .out = "\x13\x3a\x4c\xe8\x37\xb4\xd2\x52\x1e\xe2"
344 #if 0
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()