Lines Matching +full:0 +full:x06
43 "\x00\x01\x02\x03\x04\x05\x06\x07"
75 "\x00\x01\x02\x03\x04\x05\x06\x07"
84 "\x00\x01\x02\x03\x04\x05\x06\x07"
95 "\x00\x01\x02\x03\x04\x05\x06\x07"
97 "\x00\x01\x02\x03\x04\x05\x06\x07"
99 "\x00\x01\x02\x03\x04\x05\x06\x07"
101 "\x00\x01\x02\x03\x04\x05\x06\x07"
110 return '0' + i; in hex()
121 for (i = 0; i < len; i++) { in hex_string()
122 hexstr[i * 2] = hex((bytes[i] >> 4) & 0xf); in hex_string()
123 hexstr[i * 2 + 1] = hex(bytes[i] & 0xf); in hex_string()
125 hexstr[len * 2] = '\0'; in hex_string()
159 memset(key, 0, data->blocklen); in test_afsplit()
185 g_assert(qcrypto_init(NULL) == 0); in main()
187 for (i = 0; i < G_N_ELEMENTS(test_data); i++) { in main()