Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ISO7816.cs
2{
6 public enum Iso7816StatusCategory : byte
7 {
11 Ok = 0x90,
12
16 DataStillAvailable = 0x61,
17
21 WarningUnchanged = 0x62,
22
26 WarningChanged = 0x63,
27
31 ErrorUnchanged = 0x64,
32
36 ErrorChanged = 0x65,
37
41 SecurityIssue = 0x66,
42
46 WrongLength = 0x67,
47
51 FunctionNotSupported = 0x68,
52
56 NotAllowed = 0x69,
57
61 WrongParameters = 0x6A,
62
66 WrongParameters2 = 0x6B,
67
71 WrongLeField = 0x6C,
72
76 InstructionCodeInvalid = 0x6D,
77
81 ClassNotSupported = 0x6E,
82
86 Other = 0x6f
87 }
88
93 public static class ISO_7816
94 {
95 public static class Classes
96 {
100 public const byte Basic = 0x00;
101
105 public const byte SecureMessaging = 0x0C;
106
110 public const byte Chaining = 0x10;
111 }
112
116 public static class Instructions
117 {
118 public const byte DeactivateFile = 0x04;
119 public const byte EraseRecord = 0x0C;
120 public const byte EraseBinary = 0x0E;
121 public const byte MessageSecurityEnvironment = 0x22;
122 public const byte ManageChannel = 0x70;
123 public const byte ExternalAuthenticate = 0x82;
124 public const byte GetChallenge = 0x84;
125 public const byte GeneralAuthenticate = 0x86;
126 public const byte InternalAuthenticate = 0x88;
127 public const byte Select = 0xA4;
128 public const byte ReadBinary = 0xB0;
129 public const byte ReadRecord = 0xB2;
130 public const byte GetResponse = 0xC0;
131 public const byte GetData = 0xCA;
132 public const byte PutData = 0xDA;
133 public const byte UpdateBinary = 0xD6;
134 public const byte UpdateRecord = 0xDC;
135 }
136
137
138 }
139}
const byte SecureMessaging
Secure messaging.
Definition: ISO7816.cs:105
const byte Basic
Standard Command, Basic Channel, No Secure Messaging.
Definition: ISO7816.cs:100
const byte Chaining
Command Chaining.
Definition: ISO7816.cs:110
Static class with extensions related to the ISO/IEC 7816 standard for Identification cards — Integrat...
Definition: ISO7816.cs:94
Iso7816StatusCategory
First byte of a status word.
Definition: ISO7816.cs:7