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 @@ -341,6 +341,12 @@ public enum ParsingErrorCodes {
/** CV Certificate: Private key invalid params */
errLDS_CV_Certificate_PrivateKey_InvalidParams(2164260965l),

/** PACE: CAM usage data incorrect */
errLDS_PACE_CAM_Data_Usage_Incorrect(2164261163l),

/** PACE: IM mapping data incorrect */
errLDS_PACE_IM_MappingData_Incorrect(2164261167l),

/** CV Certificate: Incorrect data */
errLDS_CV_Certificate_IncorrectData(2164261216l),

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ public enum ParsingNotificationCodes {
/** ASN certificate: Incorrect issuer subject DS */
ntfLDS_ASN_Certificate_IncorrectIssuerSubjectDS(2415919120l),

/** ASN certificate: non-matching DS role */
ntfLDS_ASN_Certificate_NonMatchingDSRole(2415919121l),

/** ASN certificate: Duplicating extensions */
ntfLDS_ASN_Certificate_DuplicatingExtensions(2415919127l),

Expand Down Expand Up @@ -458,6 +461,18 @@ public enum ParsingNotificationCodes {
/** Notification: Unsupported image format */
ntfLDS_UnsupportedImageFormat(2415919386l),

/** mDL certificate: Chain SoP non-matching */
ntfLDS_MDL_Certificate_Chain_SoP_NonMatching(2415920128l),

/** mDL certificate: Unsupported public key algorithm */
ntfLDS_MDL_Certificate_UnsupportedPublicKeyAlgorithm(2415920129l),

/** mDL certificate: Unsupported signature algorithm */
ntfLDS_MDL_Certificate_UnsupportedSignatureAlgorithm(2415920130l),

/** mDL certificate: Unsupported public key params */
ntfLDS_MDL_Certificate_UnsupportedPublicKeyParams(2415920131l),

/** MRZ: Document type unknown */
ntfLDS_MRZ_DocumentType_Unknown(139272l),

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,13 @@ public enum RfidCertificateType {
BCS_NC(10),

/** DTC signer */
DTCS(11);
DTCS(11),

/** Separate CA for Barcode signer (VDS-NC) */
CA(12),

/** mDL signer */
MDLS(13);

private Integer value;

Expand Down
Loading