Lines Matching +full:0 +full:xc8
104 "\xa1\xc8\xb1\x20\xd7\x06\x2a\x49"
136 "\x36\xbe\x92\x46\x91\x5e\xc8\x2a",
163 .out = "\x0c\x60\xc8\x0f\x96\x1f\x0e\x71\xf3\xa9"
212 .out = "\x3d\x2e\xec\x4f\xe4\x1c\x84\x9b\x80\xc8"
221 .key = "pass\0word",
223 .salt = "sa\0lt",
237 .nkey = 0,
306 "\x47\xc8\x7d\x53\xc6\xa5\xe3\x77"
324 "\xe4\x01\x0d\x6f\xb5\x33\xc8\xbd"
339 "\x6a\xe2\xb3\x5b\x95\xce\xc8\xce"
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()