Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,8 @@ class ParsingErrorCodes(int, Enum):
errLDS_CV_Certificate_CHAT_UnsupportedTerminalType = 2164260963
errLDS_CV_Certificate_PrivateKey_Unsupported = 2164260964
errLDS_CV_Certificate_PrivateKey_InvalidParams = 2164260965
errLDS_PACE_CAM_Data_Usage_Incorrect = 2164261163
errLDS_PACE_IM_MappingData_Incorrect = 2164261167
errLDS_CV_Certificate_IncorrectData = 2164261216
errLDS_CV_Certificate_CPI_IncorrectData = 2164261217
errLDS_CV_Certificate_CAR_IncorrectData = 2164261218
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ class ParsingNotificationCodes(int, Enum):
ntfLDS_ASN_Certificate_ForcedDefaultCSCARole = 2415919118
ntfLDS_ASN_Certificate_ForcedDefaultDSRole = 2415919119
ntfLDS_ASN_Certificate_IncorrectIssuerSubjectDS = 2415919120
ntfLDS_ASN_Certificate_NonMatchingDSRole = 2415919121
ntfLDS_ASN_Certificate_DuplicatingExtensions = 2415919127
ntfLDS_ICAO_Certificate_Version_Missed = 2415919616
ntfLDS_ICAO_Certificate_Version_Incorrect = 2415919617
Expand Down Expand Up @@ -162,6 +163,10 @@ class ParsingNotificationCodes(int, Enum):
ntfLDS_Auth_SignerInfo_Certificate_Revoked = 2415919384
ntfLDS_Auth_SignerInfo_Certificate_SignatureInvalid = 2415919385
ntfLDS_UnsupportedImageFormat = 2415919386
ntfLDS_MDL_Certificate_Chain_SoP_NonMatching = 2415920128
ntfLDS_MDL_Certificate_UnsupportedPublicKeyAlgorithm = 2415920129
ntfLDS_MDL_Certificate_UnsupportedSignatureAlgorithm = 2415920130
ntfLDS_MDL_Certificate_UnsupportedPublicKeyParams = 2415920131
ntfLDS_MRZ_DocumentType_Unknown = 139272
ntfLDS_MRZ_IssuingState_SyntaxError = 139273
ntfLDS_MRZ_Name_IsVoid = 139274
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ class RfidCertificateType(int, Enum):
BCS = 9
BCS_NC = 10
DTCS = 11
CA = 12
MDLS = 13

@classmethod
def from_json(cls, json_str: str) -> Self:
Expand Down
Loading