/* * Generated using zcbor version 0.3.99 * https://github.com/NordicSemiconductor/zcbor * Generated with a --default-max-qty of 3 */ #include #include #include #include #include "zcbor_encode.h" #include "cbor/edhoc_encode_th2.h" #if DEFAULT_MAX_QTY != 3 #error "The type file was generated with a different default_max_qty than this file" #endif static bool encode_th2( zcbor_state_t *state, const struct th2 *input) { zcbor_print("%s\r\n", __func__); bool tmp_result = (((((zcbor_bstr_encode(state, (&(*input)._th2_hash_msg1)))) && ((zcbor_bstr_encode(state, (&(*input)._th2_G_Y)))) && ((((*input)._th2_C_R_choice == _th2_C_R_bstr) ? ((zcbor_bstr_encode(state, (&(*input)._th2_C_R_bstr)))) : (((*input)._th2_C_R_choice == _th2_C_R_int) ? ((zcbor_int32_encode(state, (&(*input)._th2_C_R_int)))) : false)))))); if (!tmp_result) zcbor_trace(); return tmp_result; } bool cbor_encode_th2( uint8_t *payload, size_t payload_len, const struct th2 *input, size_t *payload_len_out) { zcbor_state_t states[3]; zcbor_new_state(states, sizeof(states) / sizeof(zcbor_state_t), payload, payload_len, 3); bool ret = encode_th2(states, input); if (ret && (payload_len_out != NULL)) { *payload_len_out = MIN(payload_len, (size_t)states[0].payload - (size_t)payload); } return ret; }