Lines Matching +full:0 +full:x6b
90 "\x4e\xc3\xcf\x6b\xa1\xf5\x51\x2b"
118 .out = "\x13\x9c\x30\xc0\x96\x6b\xc3\x2b"
147 .out = "\x6b\x9c\xf2\x6d\x45\x45\x5a\x43"
200 "\x5b\x3d\x6b\xa2\x15\x8c\x26\x34\xe9\x84",
221 .key = "pass\0word",
223 .salt = "sa\0lt",
237 .nkey = 0,
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()