Lines Matching +full:0 +full:xa2
200 "\x5b\x3d\x6b\xa2\x15\x8c\x26\x34\xe9\x84",
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
356 "\x07\xc0\x31\x19\x9a\x50\xa2\x48"
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()