1 /*
2 * Generated using zcbor version 0.8.0
3 * https://github.com/NordicSemiconductor/zcbor
4 * Generated with a --default-max-qty of 3
5 */
6
7 #include <stdint.h>
8 #include <stdbool.h>
9 #include <stddef.h>
10 #include <string.h>
11 #include "zcbor_encode.h"
12 #include "cbor/edhoc_encode_sig_structure.h"
13 #include "zcbor_print.h"
14
15 #if DEFAULT_MAX_QTY != 3
16 #error "The type file was generated with a different default_max_qty than this file"
17 #endif
18
19 static bool encode_sig_structure(zcbor_state_t *state, const struct sig_structure *input);
20
21
encode_sig_structure(zcbor_state_t * state,const struct sig_structure * input)22 static bool encode_sig_structure(
23 zcbor_state_t *state, const struct sig_structure *input)
24 {
25 zcbor_log("%s\r\n", __func__);
26
27 bool tmp_result = (((zcbor_list_start_encode(state, 4) && ((((zcbor_tstr_encode(state, (&(*input).sig_structure_context))))
28 && ((zcbor_bstr_encode(state, (&(*input).sig_structure_protected))))
29 && ((zcbor_bstr_encode(state, (&(*input).sig_structure_external_aad))))
30 && ((zcbor_bstr_encode(state, (&(*input).sig_structure_payload))))) || (zcbor_list_map_end_force_encode(state), false)) && zcbor_list_end_encode(state, 4))));
31
32 if (!tmp_result) {
33 zcbor_trace_file(state);
34 zcbor_log("%s error: %s\r\n", __func__, zcbor_error_str(zcbor_peek_error(state)));
35 } else {
36 zcbor_log("%s success\r\n", __func__);
37 }
38
39 return tmp_result;
40 }
41
42
43
cbor_encode_sig_structure(uint8_t * payload,size_t payload_len,const struct sig_structure * input,size_t * payload_len_out)44 int cbor_encode_sig_structure(
45 uint8_t *payload, size_t payload_len,
46 const struct sig_structure *input,
47 size_t *payload_len_out)
48 {
49 zcbor_state_t states[3];
50
51 return zcbor_entry_function(payload, payload_len, (void *)input, payload_len_out, states,
52 (zcbor_decoder_t *)encode_sig_structure, sizeof(states) / sizeof(zcbor_state_t), 1);
53 }
54