Lines Matching +full:0 +full:x4b
63 "\x0a\xd1\xf7\xa0\x4b\xb9\xf3\xa3"
106 "\xad\xf4\xfa\x57\x4b\x6e\x64\xee",
187 .out = "\x4b\x00\x79\x01\xb7\x65\x48\x9a\xbe\xad"
221 .key = "pass\0word",
223 .salt = "sa\0lt",
237 .nkey = 0,
254 .out = "\x22\x34\x4b\xc4\xb6\xe3\x26\x75"
307 "\x29\x41\x76\xbd\x4b\xe3\x9b\xac"
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()