Lines Matching refs:vec
81 {KEYS_STR, parse_tdes_uint8_hex_str, &vec.cipher_auth.key},
82 {KEY1_STR, parse_tdes_uint8_hex_str, &vec.cipher_auth.key},
83 {KEY2_STR, parse_tdes_uint8_hex_str, &vec.cipher_auth.key},
84 {KEY3_STR, parse_tdes_uint8_hex_str, &vec.cipher_auth.key},
85 {IV_STR, parse_uint8_hex_str, &vec.iv},
86 {PT_STR, parse_uint8_hex_str, &vec.pt},
87 {CT_STR, parse_uint8_hex_str, &vec.ct},
101 {IV_STR, writeback_hex_str, &vec.iv},
102 {KEY1_STR, writeback_tdes_hex_str, &vec.cipher_auth.key},
103 {KEY2_STR, writeback_tdes_hex_str, &vec.cipher_auth.key},
104 {KEY3_STR, writeback_tdes_hex_str, &vec.cipher_auth.key},
105 {KEYS_STR, writeback_tdes_hex_str, &vec.cipher_auth.key},
106 {PT_STR, writeback_hex_str, &vec.pt},
107 {CT_STR, writeback_hex_str, &vec.ct},
189 {KEY1_JSON_STR, parser_tdes_read_key, &vec.cipher_auth.key},
190 {KEY2_JSON_STR, parser_tdes_read_key, &vec.cipher_auth.key},
191 {KEY3_JSON_STR, parser_tdes_read_key, &vec.cipher_auth.key},
192 {IV_JSON_STR, parse_uint8_hex_str, &vec.iv},
193 {CT_JSON_STR, parse_uint8_hex_str, &vec.ct},
198 {KEY1_JSON_STR, parser_tdes_read_key, &vec.cipher_auth.key},
199 {KEY2_JSON_STR, parser_tdes_read_key, &vec.cipher_auth.key},
200 {KEY3_JSON_STR, parser_tdes_read_key, &vec.cipher_auth.key},
201 {IV_JSON_STR, parse_uint8_hex_str, &vec.iv},
202 {PT_JSON_STR, parse_uint8_hex_str, &vec.pt},
221 tmp_val.len = vec.pt.len; in parse_test_tdes_json_writeback()
227 tmp_val.val = val->val + vec.pt.len; in parse_test_tdes_json_writeback()
228 tmp_val.len = val->len - vec.pt.len; in parse_test_tdes_json_writeback()
232 if (vec.status == RTE_CRYPTO_OP_STATUS_SUCCESS) { in parse_test_tdes_json_writeback()
234 tmp_val.len = vec.ct.len; in parse_test_tdes_json_writeback()
276 tmp_val.val = vec.cipher_auth.key.val; in parse_test_tdes_mct_json_writeback()
281 tmp_val.val = vec.cipher_auth.key.val + 8; in parse_test_tdes_mct_json_writeback()
286 tmp_val.val = vec.cipher_auth.key.val + 16; in parse_test_tdes_mct_json_writeback()
302 tmp_val.len = vec.pt.len; in parse_test_tdes_mct_json_writeback()
308 tmp_val.val = val->val + vec.pt.len; in parse_test_tdes_mct_json_writeback()
309 tmp_val.len = val->len - vec.pt.len; in parse_test_tdes_mct_json_writeback()
313 if (vec.status == RTE_CRYPTO_OP_STATUS_SUCCESS) { in parse_test_tdes_mct_json_writeback()
315 tmp_val.val = vec.cipher_auth.key.val; in parse_test_tdes_mct_json_writeback()
320 tmp_val.val = vec.cipher_auth.key.val + 8; in parse_test_tdes_mct_json_writeback()
325 tmp_val.val = vec.cipher_auth.key.val + 16; in parse_test_tdes_mct_json_writeback()
337 tmp_val.len = vec.ct.len; in parse_test_tdes_mct_json_writeback()
564 data = &vec.ct; in rsp_test_tdes_check()
566 data = &vec.pt; in rsp_test_tdes_check()
582 char *line = info.vec[i]; in parse_test_tdes_init()