annotate uicc/efstruct.h @ 93:6041c601304d

fcsim1-mkprov: revert OTA key addition It appears that GrcardSIM2 cards (which is what we got for FCSIM1) do not support OTA after all, contrary to what we were previously led to believe by some tech support emails from Grcard - apparently those support emails and OTA descriptions referred to some other card model(s).
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 21 Apr 2021 05:38:39 +0000
parents 0e46bbb801e0
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
87
0e46bbb801e0 fc-uicc-tool: internal code in preparation for porting
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
1 /*
0e46bbb801e0 fc-uicc-tool: internal code in preparation for porting
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
2 * This header file defines a simple internal struct that represents
0e46bbb801e0 fc-uicc-tool: internal code in preparation for porting
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
3 * EF structure decoded from the messy TLV-based SELECT response.
0e46bbb801e0 fc-uicc-tool: internal code in preparation for porting
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
4 */
0e46bbb801e0 fc-uicc-tool: internal code in preparation for porting
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
5
0e46bbb801e0 fc-uicc-tool: internal code in preparation for porting
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
6 struct ef_struct {
0e46bbb801e0 fc-uicc-tool: internal code in preparation for porting
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
7 unsigned structure;
0e46bbb801e0 fc-uicc-tool: internal code in preparation for porting
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
8 unsigned total_size;
0e46bbb801e0 fc-uicc-tool: internal code in preparation for porting
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
9 unsigned record_len;
0e46bbb801e0 fc-uicc-tool: internal code in preparation for porting
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
10 unsigned record_count;
0e46bbb801e0 fc-uicc-tool: internal code in preparation for porting
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
11 };