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
8 changes: 8 additions & 0 deletions src/models/parsing-error-codes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -439,6 +439,14 @@ export enum ParsingErrorCodes {
*/
errLDS_CV_Certificate_PrivateKey_InvalidParams = 2164260965,
/**
* PACE: CAM usage data incorrect
*/
errLDS_PACE_CAM_Data_Usage_Incorrect = 2164261163,
/**
* PACE: IM mapping data incorrect
*/
errLDS_PACE_IM_MappingData_Incorrect = 2164261167,
/**
* CV Certificate: Incorrect data
*/
errLDS_CV_Certificate_IncorrectData = 2164261216,
Expand Down
20 changes: 20 additions & 0 deletions src/models/parsing-notification-codes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ export enum ParsingNotificationCodes {
*/
ntfLDS_ASN_Certificate_IncorrectIssuerSubjectDS = 2415919120,
/**
* ASN certificate: non-matching DS role
*/
ntfLDS_ASN_Certificate_NonMatchingDSRole = 2415919121,
/**
* ASN certificate: Duplicating extensions
*/
ntfLDS_ASN_Certificate_DuplicatingExtensions = 2415919127,
Expand Down Expand Up @@ -591,6 +595,22 @@ export enum ParsingNotificationCodes {
*/
ntfLDS_UnsupportedImageFormat = 2415919386,
/**
* mDL certificate: Chain SoP non-matching
*/
ntfLDS_MDL_Certificate_Chain_SoP_NonMatching = 2415920128,
/**
* mDL certificate: Unsupported public key algorithm
*/
ntfLDS_MDL_Certificate_UnsupportedPublicKeyAlgorithm = 2415920129,
/**
* mDL certificate: Unsupported signature algorithm
*/
ntfLDS_MDL_Certificate_UnsupportedSignatureAlgorithm = 2415920130,
/**
* mDL certificate: Unsupported public key params
*/
ntfLDS_MDL_Certificate_UnsupportedPublicKeyParams = 2415920131,
/**
* MRZ: Document type unknown
*/
ntfLDS_MRZ_DocumentType_Unknown = 139272,
Expand Down
10 changes: 9 additions & 1 deletion src/models/rfid-certificate-type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,15 @@ export enum RfidCertificateType {
/**
* DTC signer
*/
DTCS = 11
DTCS = 11,
/**
* Separate CA for Barcode signer (VDS-NC)
*/
CA = 12,
/**
* mDL signer
*/
MDLS = 13
}


Expand Down
Loading