@regulaforensics/document-reader 8.2.186-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +18 -0
- package/RNDocumentReader.podspec +21 -0
- package/android/CVDDocumentReader.kt +74 -0
- package/android/build.gradle +36 -0
- package/android/cordova.gradle +12 -0
- package/android/src/main/java/com/regula/plugin/documentreader/BluetoothUtil.kt +160 -0
- package/android/src/main/java/com/regula/plugin/documentreader/Config.kt +826 -0
- package/android/src/main/java/com/regula/plugin/documentreader/JSONConstructor.kt +1795 -0
- package/android/src/main/java/com/regula/plugin/documentreader/Main.kt +573 -0
- package/android/src/main/java/com/regula/plugin/documentreader/RNDocumentReaderModule.kt +100 -0
- package/android/src/main/java/com/regula/plugin/documentreader/Utils.kt +181 -0
- package/examples/capacitor/README.md +12 -0
- package/examples/capacitor/android/app/build.gradle +50 -0
- package/examples/capacitor/android/app/capacitor.build.gradle +22 -0
- package/examples/capacitor/android/app/proguard-rules.pro +21 -0
- package/examples/capacitor/android/app/src/main/AndroidManifest.xml +27 -0
- package/examples/capacitor/android/app/src/main/assets/Regula/.gitkeep +0 -0
- package/examples/capacitor/android/app/src/main/java/com/regula/dr/fullauthrfid/MainActivity.java +5 -0
- package/examples/capacitor/android/app/src/main/res/drawable/ic_launcher.png +0 -0
- package/examples/capacitor/android/app/src/main/res/drawable/splash.png +0 -0
- package/examples/capacitor/android/app/src/main/res/layout/activity_main.xml +12 -0
- package/examples/capacitor/android/app/src/main/res/values/strings.xml +7 -0
- package/examples/capacitor/android/app/src/main/res/values/styles.xml +22 -0
- package/examples/capacitor/android/build.gradle +30 -0
- package/examples/capacitor/android/capacitor.settings.gradle +15 -0
- package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/examples/capacitor/android/gradle/wrapper/gradle-wrapper.properties +7 -0
- package/examples/capacitor/android/gradle.properties +22 -0
- package/examples/capacitor/android/gradlew +252 -0
- package/examples/capacitor/android/gradlew.bat +94 -0
- package/examples/capacitor/android/settings.gradle +5 -0
- package/examples/capacitor/android/variables.gradle +16 -0
- package/examples/capacitor/index.html +10 -0
- package/examples/capacitor/ionic.config.json +7 -0
- package/examples/capacitor/ios/App/App/App.entitlements +5 -0
- package/examples/capacitor/ios/App/App/AppDelegate.swift +49 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png +0 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json +14 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Contents.json +6 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/Contents.json +23 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png +0 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png +0 -0
- package/examples/capacitor/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png +0 -0
- package/examples/capacitor/ios/App/App/Base.lproj/LaunchScreen.storyboard +32 -0
- package/examples/capacitor/ios/App/App/Base.lproj/Main.storyboard +19 -0
- package/examples/capacitor/ios/App/App/Info.plist +53 -0
- package/examples/capacitor/ios/App/App.xcodeproj/project.pbxproj +414 -0
- package/examples/capacitor/ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/examples/capacitor/ios/App/App.xcworkspace/contents.xcworkspacedata +10 -0
- package/examples/capacitor/ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/examples/capacitor/ios/App/Podfile +26 -0
- package/examples/capacitor/ios/App/Podfile.lock +56 -0
- package/examples/capacitor/package-lock.json +3467 -0
- package/examples/capacitor/package.json +29 -0
- package/examples/capacitor/public/assets/.gitkeep +0 -0
- package/examples/capacitor/public/images/document.png +0 -0
- package/examples/capacitor/public/images/portrait.png +0 -0
- package/examples/capacitor/scripts/android.sh +9 -0
- package/examples/capacitor/scripts/ios.sh +8 -0
- package/examples/capacitor/scripts/setup.sh +6 -0
- package/examples/capacitor/src/extra/bt_device.tsx +32 -0
- package/examples/capacitor/src/extra/custom_rfid.tsx +74 -0
- package/examples/capacitor/src/main.css +131 -0
- package/examples/capacitor/src/main.html +41 -0
- package/examples/capacitor/src/main.tsx +175 -0
- package/examples/capacitor/tsconfig.json +5 -0
- package/examples/capacitor/vite.config.ts +17 -0
- package/examples/cordova/.vscode/launch.json +28 -0
- package/examples/cordova/.vscode/typings/cordova/cordova.d.ts +80 -0
- package/examples/cordova/README.md +12 -0
- package/examples/cordova/config.xml +29 -0
- package/examples/cordova/package-lock.json +1314 -0
- package/examples/cordova/package.json +32 -0
- package/examples/cordova/scripts/android.sh +8 -0
- package/examples/cordova/scripts/ios.sh +8 -0
- package/examples/cordova/scripts/setup.sh +8 -0
- package/examples/cordova/www/images/document.png +0 -0
- package/examples/cordova/www/images/logo.png +0 -0
- package/examples/cordova/www/images/portrait.png +0 -0
- package/examples/cordova/www/index.html +21 -0
- package/examples/cordova/www/src/main.css +130 -0
- package/examples/cordova/www/src/main.html +63 -0
- package/examples/cordova/www/src/main.js +50 -0
- package/examples/ionic/README.md +12 -0
- package/examples/ionic/angular.json +39 -0
- package/examples/ionic/config.xml +28 -0
- package/examples/ionic/index.html +19 -0
- package/examples/ionic/index.ts +17 -0
- package/examples/ionic/ionic.config.json +7 -0
- package/examples/ionic/package-lock.json +16559 -0
- package/examples/ionic/package.json +47 -0
- package/examples/ionic/scripts/android.sh +8 -0
- package/examples/ionic/scripts/ios.sh +8 -0
- package/examples/ionic/scripts/setup.sh +8 -0
- package/examples/ionic/src/assets/.gitkeep +0 -0
- package/examples/ionic/src/images/document.png +0 -0
- package/examples/ionic/src/images/icon.png +0 -0
- package/examples/ionic/src/images/portrait.png +0 -0
- package/examples/ionic/src/main.css +130 -0
- package/examples/ionic/src/main.html +63 -0
- package/examples/ionic/src/main.ts +66 -0
- package/examples/ionic/tsconfig.json +12 -0
- package/examples/react_native/README.md +12 -0
- package/examples/react_native/app.config.ts +53 -0
- package/examples/react_native/assets/.gitkeep +0 -0
- package/examples/react_native/images/document.png +0 -0
- package/examples/react_native/images/icon/adaptive-icon.png +0 -0
- package/examples/react_native/images/icon/icon.png +0 -0
- package/examples/react_native/images/portrait.png +0 -0
- package/examples/react_native/index.html +11 -0
- package/examples/react_native/index.tsx +52 -0
- package/examples/react_native/metro.config.js +7 -0
- package/examples/react_native/package-lock.json +9254 -0
- package/examples/react_native/package.json +27 -0
- package/examples/react_native/scripts/android.sh +12 -0
- package/examples/react_native/scripts/ios.sh +11 -0
- package/examples/react_native/scripts/setup.sh +8 -0
- package/examples/react_native/src/main.css +130 -0
- package/examples/react_native/src/main.html +63 -0
- package/examples/react_native/src/main.tsx +50 -0
- package/ios/CVDDocumentReader.h +7 -0
- package/ios/CVDDocumentReader.m +39 -0
- package/ios/RGLWConfig.h +42 -0
- package/ios/RGLWConfig.m +1398 -0
- package/ios/RGLWJSONConstructor.h +185 -0
- package/ios/RGLWJSONConstructor.m +2379 -0
- package/ios/RGLWMain.h +36 -0
- package/ios/RGLWMain.m +610 -0
- package/ios/RNDocumentReader.h +8 -0
- package/ios/RNDocumentReader.m +49 -0
- package/package.json +36 -0
- package/plugin.xml +51 -0
- package/www/capacitor/config/InitConfig.js +25 -0
- package/www/capacitor/config/OnlineProcessingConfig.js +41 -0
- package/www/capacitor/config/RFIDConfig.js +31 -0
- package/www/capacitor/config/RecognizeConfig.js +103 -0
- package/www/capacitor/config/ScannerConfig.js +38 -0
- package/www/capacitor/index.js +486 -0
- package/www/capacitor/info/DocReaderException.js +57 -0
- package/www/capacitor/info/DocReaderScenario.js +71 -0
- package/www/capacitor/info/DocReaderVersion.js +23 -0
- package/www/capacitor/info/DocumentsDatabase.js +27 -0
- package/www/capacitor/info/License.js +22 -0
- package/www/capacitor/info/PrepareProgress.js +23 -0
- package/www/capacitor/info/RFIDException.js +19 -0
- package/www/capacitor/internal/bridge.js +98 -0
- package/www/capacitor/internal/cordova.js +17 -0
- package/www/capacitor/params/Functionality.js +303 -0
- package/www/capacitor/params/customization/Customization.js +550 -0
- package/www/capacitor/params/customization/CustomizationColors.js +74 -0
- package/www/capacitor/params/customization/CustomizationFonts.js +40 -0
- package/www/capacitor/params/customization/CustomizationImages.js +25 -0
- package/www/capacitor/params/customization/Font.js +28 -0
- package/www/capacitor/params/process_params/AuthenticityParams.js +129 -0
- package/www/capacitor/params/process_params/BackendProcessingConfig.js +25 -0
- package/www/capacitor/params/process_params/FaceApiParams.js +38 -0
- package/www/capacitor/params/process_params/FaceApiSearchParams.js +21 -0
- package/www/capacitor/params/process_params/GlaresCheckParams.js +18 -0
- package/www/capacitor/params/process_params/ImageQA.js +97 -0
- package/www/capacitor/params/process_params/LivenessParams.js +67 -0
- package/www/capacitor/params/process_params/ProcessParams.js +570 -0
- package/www/capacitor/params/process_params/RfidParams.js +15 -0
- package/www/capacitor/params/rfid_scenario/DTCDataGroups.js +53 -0
- package/www/capacitor/params/rfid_scenario/EDLDataGroups.js +116 -0
- package/www/capacitor/params/rfid_scenario/EIDDataGroups.js +165 -0
- package/www/capacitor/params/rfid_scenario/EPassportDataGroups.js +130 -0
- package/www/capacitor/params/rfid_scenario/RFIDScenario.js +493 -0
- package/www/capacitor/results/DocumentType.js +285 -0
- package/www/capacitor/results/Position.js +60 -0
- package/www/capacitor/results/Results.js +318 -0
- package/www/capacitor/results/TransactionInfo.js +16 -0
- package/www/capacitor/results/authenticity/Authenticity.js +23 -0
- package/www/capacitor/results/authenticity/AuthenticityCheck.js +33 -0
- package/www/capacitor/results/authenticity/AuthenticityElement.js +27 -0
- package/www/capacitor/results/authenticity/AuthenticityResult.js +26 -0
- package/www/capacitor/results/authenticity/CheckDiagnose.js +124 -0
- package/www/capacitor/results/authenticity/SecurityFeatureType.js +59 -0
- package/www/capacitor/results/barcode/BarcodeField.js +24 -0
- package/www/capacitor/results/barcode/BarcodeResult.js +24 -0
- package/www/capacitor/results/barcode/BarcodeStatus.js +33 -0
- package/www/capacitor/results/barcode/BarcodeType.js +21 -0
- package/www/capacitor/results/barcode/PDF417Info.js +16 -0
- package/www/capacitor/results/image_quality/ImageQuality.js +31 -0
- package/www/capacitor/results/image_quality/ImageQualityCheckType.js +19 -0
- package/www/capacitor/results/image_quality/ImageQualityGroup.js +30 -0
- package/www/capacitor/results/rfid/AccessControlProcedureType.js +21 -0
- package/www/capacitor/results/rfid/Application.js +47 -0
- package/www/capacitor/results/rfid/Attribute.js +16 -0
- package/www/capacitor/results/rfid/Authority.js +28 -0
- package/www/capacitor/results/rfid/CardProperties.js +38 -0
- package/www/capacitor/results/rfid/CertificateChain.js +51 -0
- package/www/capacitor/results/rfid/CertificateData.js +14 -0
- package/www/capacitor/results/rfid/DataField.js +16 -0
- package/www/capacitor/results/rfid/Extension.js +14 -0
- package/www/capacitor/results/rfid/File.js +39 -0
- package/www/capacitor/results/rfid/FileData.js +18 -0
- package/www/capacitor/results/rfid/RFIDAccessControlProcedureType.js +10 -0
- package/www/capacitor/results/rfid/RFIDCertificateType.js +13 -0
- package/www/capacitor/results/rfid/RFIDDataFileType.js +98 -0
- package/www/capacitor/results/rfid/RFIDSessionData.js +76 -0
- package/www/capacitor/results/rfid/RFIDValidity.js +16 -0
- package/www/capacitor/results/rfid/RFIDValue.js +20 -0
- package/www/capacitor/results/rfid/SecurityObject.js +31 -0
- package/www/capacitor/results/rfid/SecurityObjectCertificates.js +14 -0
- package/www/capacitor/results/rfid/SignerInfo.js +57 -0
- package/www/capacitor/results/status/CheckResult.js +5 -0
- package/www/capacitor/results/status/OpticalStatus.js +30 -0
- package/www/capacitor/results/status/RFIDStatus.js +26 -0
- package/www/capacitor/results/status/ResultsStatus.js +28 -0
- package/www/capacitor/results/visible_digital_seals/BytesData.js +18 -0
- package/www/capacitor/results/visible_digital_seals/LDSParsingErrorCodes.js +134 -0
- package/www/capacitor/results/visible_digital_seals/LDSParsingNotificationCodes.js +232 -0
- package/www/capacitor/results/visible_digital_seals/VDSNCData.js +40 -0
- package/www/capacitor/results/visual_results/Comparison.js +19 -0
- package/www/capacitor/results/visual_results/FieldType.js +658 -0
- package/www/capacitor/results/visual_results/GraphicField.js +33 -0
- package/www/capacitor/results/visual_results/GraphicFieldType.js +25 -0
- package/www/capacitor/results/visual_results/GraphicResult.js +22 -0
- package/www/capacitor/results/visual_results/LCID.js +174 -0
- package/www/capacitor/results/visual_results/Lights.js +11 -0
- package/www/capacitor/results/visual_results/RFIDOrigin.js +18 -0
- package/www/capacitor/results/visual_results/Rect.js +18 -0
- package/www/capacitor/results/visual_results/Symbol.js +18 -0
- package/www/capacitor/results/visual_results/TextField.js +68 -0
- package/www/capacitor/results/visual_results/TextResult.js +42 -0
- package/www/capacitor/results/visual_results/TextSource.js +19 -0
- package/www/capacitor/results/visual_results/Validity.js +17 -0
- package/www/capacitor/results/visual_results/Value.js +39 -0
- package/www/capacitor/rfid/PAAttribute.js +17 -0
- package/www/capacitor/rfid/PAResourcesIssuer.js +27 -0
- package/www/capacitor/rfid/PKDCertificate.js +54 -0
- package/www/capacitor/rfid/RFIDErrorCodes.js +123 -0
- package/www/capacitor/rfid/RFIDNotification.js +60 -0
- package/www/capacitor/rfid/TAChallenge.js +23 -0
- package/www/capacitor/rfid/TccParams.js +24 -0
- package/www/cordova.js +9816 -0
- package/www/react-native/config/InitConfig.js +25 -0
- package/www/react-native/config/OnlineProcessingConfig.js +41 -0
- package/www/react-native/config/RFIDConfig.js +31 -0
- package/www/react-native/config/RecognizeConfig.js +103 -0
- package/www/react-native/config/ScannerConfig.js +38 -0
- package/www/react-native/index.js +486 -0
- package/www/react-native/info/DocReaderException.js +57 -0
- package/www/react-native/info/DocReaderScenario.js +71 -0
- package/www/react-native/info/DocReaderVersion.js +23 -0
- package/www/react-native/info/DocumentsDatabase.js +27 -0
- package/www/react-native/info/License.js +22 -0
- package/www/react-native/info/PrepareProgress.js +23 -0
- package/www/react-native/info/RFIDException.js +19 -0
- package/www/react-native/internal/bridge.js +98 -0
- package/www/react-native/params/Functionality.js +303 -0
- package/www/react-native/params/customization/Customization.js +550 -0
- package/www/react-native/params/customization/CustomizationColors.js +74 -0
- package/www/react-native/params/customization/CustomizationFonts.js +40 -0
- package/www/react-native/params/customization/CustomizationImages.js +25 -0
- package/www/react-native/params/customization/Font.js +28 -0
- package/www/react-native/params/process_params/AuthenticityParams.js +129 -0
- package/www/react-native/params/process_params/BackendProcessingConfig.js +25 -0
- package/www/react-native/params/process_params/FaceApiParams.js +38 -0
- package/www/react-native/params/process_params/FaceApiSearchParams.js +21 -0
- package/www/react-native/params/process_params/GlaresCheckParams.js +18 -0
- package/www/react-native/params/process_params/ImageQA.js +97 -0
- package/www/react-native/params/process_params/LivenessParams.js +67 -0
- package/www/react-native/params/process_params/ProcessParams.js +570 -0
- package/www/react-native/params/process_params/RfidParams.js +15 -0
- package/www/react-native/params/rfid_scenario/DTCDataGroups.js +53 -0
- package/www/react-native/params/rfid_scenario/EDLDataGroups.js +116 -0
- package/www/react-native/params/rfid_scenario/EIDDataGroups.js +165 -0
- package/www/react-native/params/rfid_scenario/EPassportDataGroups.js +130 -0
- package/www/react-native/params/rfid_scenario/RFIDScenario.js +493 -0
- package/www/react-native/results/DocumentType.js +285 -0
- package/www/react-native/results/Position.js +60 -0
- package/www/react-native/results/Results.js +318 -0
- package/www/react-native/results/TransactionInfo.js +16 -0
- package/www/react-native/results/authenticity/Authenticity.js +23 -0
- package/www/react-native/results/authenticity/AuthenticityCheck.js +33 -0
- package/www/react-native/results/authenticity/AuthenticityElement.js +27 -0
- package/www/react-native/results/authenticity/AuthenticityResult.js +26 -0
- package/www/react-native/results/authenticity/CheckDiagnose.js +124 -0
- package/www/react-native/results/authenticity/SecurityFeatureType.js +59 -0
- package/www/react-native/results/barcode/BarcodeField.js +24 -0
- package/www/react-native/results/barcode/BarcodeResult.js +24 -0
- package/www/react-native/results/barcode/BarcodeStatus.js +33 -0
- package/www/react-native/results/barcode/BarcodeType.js +21 -0
- package/www/react-native/results/barcode/PDF417Info.js +16 -0
- package/www/react-native/results/image_quality/ImageQuality.js +31 -0
- package/www/react-native/results/image_quality/ImageQualityCheckType.js +19 -0
- package/www/react-native/results/image_quality/ImageQualityGroup.js +30 -0
- package/www/react-native/results/rfid/AccessControlProcedureType.js +21 -0
- package/www/react-native/results/rfid/Application.js +47 -0
- package/www/react-native/results/rfid/Attribute.js +16 -0
- package/www/react-native/results/rfid/Authority.js +28 -0
- package/www/react-native/results/rfid/CardProperties.js +38 -0
- package/www/react-native/results/rfid/CertificateChain.js +51 -0
- package/www/react-native/results/rfid/CertificateData.js +14 -0
- package/www/react-native/results/rfid/DataField.js +16 -0
- package/www/react-native/results/rfid/Extension.js +14 -0
- package/www/react-native/results/rfid/File.js +39 -0
- package/www/react-native/results/rfid/FileData.js +18 -0
- package/www/react-native/results/rfid/RFIDAccessControlProcedureType.js +10 -0
- package/www/react-native/results/rfid/RFIDCertificateType.js +13 -0
- package/www/react-native/results/rfid/RFIDDataFileType.js +98 -0
- package/www/react-native/results/rfid/RFIDSessionData.js +76 -0
- package/www/react-native/results/rfid/RFIDValidity.js +16 -0
- package/www/react-native/results/rfid/RFIDValue.js +20 -0
- package/www/react-native/results/rfid/SecurityObject.js +31 -0
- package/www/react-native/results/rfid/SecurityObjectCertificates.js +14 -0
- package/www/react-native/results/rfid/SignerInfo.js +57 -0
- package/www/react-native/results/status/CheckResult.js +5 -0
- package/www/react-native/results/status/OpticalStatus.js +30 -0
- package/www/react-native/results/status/RFIDStatus.js +26 -0
- package/www/react-native/results/status/ResultsStatus.js +28 -0
- package/www/react-native/results/visible_digital_seals/BytesData.js +18 -0
- package/www/react-native/results/visible_digital_seals/LDSParsingErrorCodes.js +134 -0
- package/www/react-native/results/visible_digital_seals/LDSParsingNotificationCodes.js +232 -0
- package/www/react-native/results/visible_digital_seals/VDSNCData.js +40 -0
- package/www/react-native/results/visual_results/Comparison.js +19 -0
- package/www/react-native/results/visual_results/FieldType.js +658 -0
- package/www/react-native/results/visual_results/GraphicField.js +33 -0
- package/www/react-native/results/visual_results/GraphicFieldType.js +25 -0
- package/www/react-native/results/visual_results/GraphicResult.js +22 -0
- package/www/react-native/results/visual_results/LCID.js +174 -0
- package/www/react-native/results/visual_results/Lights.js +11 -0
- package/www/react-native/results/visual_results/RFIDOrigin.js +18 -0
- package/www/react-native/results/visual_results/Rect.js +18 -0
- package/www/react-native/results/visual_results/Symbol.js +18 -0
- package/www/react-native/results/visual_results/TextField.js +68 -0
- package/www/react-native/results/visual_results/TextResult.js +42 -0
- package/www/react-native/results/visual_results/TextSource.js +19 -0
- package/www/react-native/results/visual_results/Validity.js +17 -0
- package/www/react-native/results/visual_results/Value.js +39 -0
- package/www/react-native/rfid/PAAttribute.js +17 -0
- package/www/react-native/rfid/PAResourcesIssuer.js +27 -0
- package/www/react-native/rfid/PKDCertificate.js +54 -0
- package/www/react-native/rfid/RFIDErrorCodes.js +123 -0
- package/www/react-native/rfid/RFIDNotification.js +60 -0
- package/www/react-native/rfid/TAChallenge.js +23 -0
- package/www/react-native/rfid/TccParams.js +24 -0
- package/www/types/config/InitConfig.d.ts +63 -0
- package/www/types/config/OnlineProcessingConfig.d.ts +22 -0
- package/www/types/config/RFIDConfig.d.ts +131 -0
- package/www/types/config/RecognizeConfig.d.ts +119 -0
- package/www/types/config/ScannerConfig.d.ts +54 -0
- package/www/types/index.d.ts +421 -0
- package/www/types/info/DocReaderException.d.ts +79 -0
- package/www/types/info/DocReaderScenario.d.ts +90 -0
- package/www/types/info/DocReaderVersion.d.ts +28 -0
- package/www/types/info/DocumentsDatabase.d.ts +42 -0
- package/www/types/info/License.d.ts +23 -0
- package/www/types/info/PrepareProgress.d.ts +15 -0
- package/www/types/info/RFIDException.d.ts +8 -0
- package/www/types/params/Functionality.d.ts +316 -0
- package/www/types/params/customization/Customization.d.ts +558 -0
- package/www/types/params/customization/CustomizationColors.d.ts +16 -0
- package/www/types/params/customization/CustomizationFonts.d.ts +13 -0
- package/www/types/params/customization/CustomizationImages.d.ts +12 -0
- package/www/types/params/customization/Font.d.ts +36 -0
- package/www/types/params/process_params/AuthenticityParams.d.ts +30 -0
- package/www/types/params/process_params/BackendProcessingConfig.d.ts +25 -0
- package/www/types/params/process_params/FaceApiParams.d.ts +68 -0
- package/www/types/params/process_params/FaceApiSearchParams.d.ts +35 -0
- package/www/types/params/process_params/GlaresCheckParams.d.ts +26 -0
- package/www/types/params/process_params/ImageQA.d.ts +79 -0
- package/www/types/params/process_params/LivenessParams.d.ts +20 -0
- package/www/types/params/process_params/ProcessParams.d.ts +465 -0
- package/www/types/params/process_params/RfidParams.d.ts +19 -0
- package/www/types/params/rfid_scenario/DTCDataGroups.d.ts +13 -0
- package/www/types/params/rfid_scenario/EDLDataGroups.d.ts +22 -0
- package/www/types/params/rfid_scenario/EIDDataGroups.d.ts +29 -0
- package/www/types/params/rfid_scenario/EPassportDataGroups.d.ts +24 -0
- package/www/types/params/rfid_scenario/RFIDScenario.d.ts +167 -0
- package/www/types/results/DocumentType.d.ts +525 -0
- package/www/types/results/Position.d.ts +50 -0
- package/www/types/results/Results.d.ts +283 -0
- package/www/types/results/TransactionInfo.d.ts +9 -0
- package/www/types/results/authenticity/Authenticity.d.ts +67 -0
- package/www/types/results/authenticity/AuthenticityCheck.d.ts +23 -0
- package/www/types/results/authenticity/AuthenticityElement.d.ts +26 -0
- package/www/types/results/authenticity/AuthenticityResult.d.ts +16 -0
- package/www/types/results/authenticity/CheckDiagnose.d.ts +229 -0
- package/www/types/results/authenticity/SecurityFeatureType.d.ts +100 -0
- package/www/types/results/barcode/BarcodeField.d.ts +37 -0
- package/www/types/results/barcode/BarcodeResult.d.ts +14 -0
- package/www/types/results/barcode/BarcodeStatus.d.ts +66 -0
- package/www/types/results/barcode/BarcodeType.d.ts +45 -0
- package/www/types/results/barcode/PDF417Info.d.ts +15 -0
- package/www/types/results/image_quality/ImageQuality.d.ts +18 -0
- package/www/types/results/image_quality/ImageQualityCheckType.d.ts +30 -0
- package/www/types/results/image_quality/ImageQualityGroup.d.ts +17 -0
- package/www/types/results/rfid/AccessControlProcedureType.d.ts +21 -0
- package/www/types/results/rfid/Application.d.ts +44 -0
- package/www/types/results/rfid/Attribute.d.ts +9 -0
- package/www/types/results/rfid/Authority.d.ts +11 -0
- package/www/types/results/rfid/CardProperties.d.ts +48 -0
- package/www/types/results/rfid/CertificateChain.d.ts +28 -0
- package/www/types/results/rfid/CertificateData.d.ts +7 -0
- package/www/types/results/rfid/DataField.d.ts +9 -0
- package/www/types/results/rfid/Extension.d.ts +7 -0
- package/www/types/results/rfid/File.d.ts +22 -0
- package/www/types/results/rfid/FileData.d.ts +9 -0
- package/www/types/results/rfid/RFIDAccessControlProcedureType.d.ts +18 -0
- package/www/types/results/rfid/RFIDCertificateType.d.ts +13 -0
- package/www/types/results/rfid/RFIDDataFileType.d.ts +101 -0
- package/www/types/results/rfid/RFIDSessionData.d.ts +48 -0
- package/www/types/results/rfid/RFIDValidity.d.ts +9 -0
- package/www/types/results/rfid/RFIDValue.d.ts +10 -0
- package/www/types/results/rfid/SecurityObject.d.ts +28 -0
- package/www/types/results/rfid/SecurityObjectCertificates.d.ts +8 -0
- package/www/types/results/rfid/SignerInfo.d.ts +41 -0
- package/www/types/results/status/CheckResult.d.ts +8 -0
- package/www/types/results/status/OpticalStatus.d.ts +29 -0
- package/www/types/results/status/RFIDStatus.d.ts +22 -0
- package/www/types/results/status/ResultsStatus.d.ts +24 -0
- package/www/types/results/visible_digital_seals/BytesData.d.ts +9 -0
- package/www/types/results/visible_digital_seals/LDSParsingErrorCodes.d.ts +132 -0
- package/www/types/results/visible_digital_seals/LDSParsingNotificationCodes.d.ts +230 -0
- package/www/types/results/visible_digital_seals/VDSNCData.d.ts +35 -0
- package/www/types/results/visual_results/Comparison.d.ts +15 -0
- package/www/types/results/visual_results/FieldType.d.ts +1310 -0
- package/www/types/results/visual_results/GraphicField.d.ts +29 -0
- package/www/types/results/visual_results/GraphicFieldType.d.ts +52 -0
- package/www/types/results/visual_results/GraphicResult.d.ts +10 -0
- package/www/types/results/visual_results/LCID.d.ts +173 -0
- package/www/types/results/visual_results/Lights.d.ts +23 -0
- package/www/types/results/visual_results/RFIDOrigin.d.ts +10 -0
- package/www/types/results/visual_results/Rect.d.ts +9 -0
- package/www/types/results/visual_results/Symbol.d.ts +14 -0
- package/www/types/results/visual_results/TextField.d.ts +40 -0
- package/www/types/results/visual_results/TextResult.d.ts +23 -0
- package/www/types/results/visual_results/TextSource.d.ts +15 -0
- package/www/types/results/visual_results/Validity.d.ts +13 -0
- package/www/types/results/visual_results/Value.d.ts +27 -0
- package/www/types/rfid/PAAttribute.d.ts +4 -0
- package/www/types/rfid/PAResourcesIssuer.d.ts +7 -0
- package/www/types/rfid/PKDCertificate.d.ts +34 -0
- package/www/types/rfid/RFIDErrorCodes.d.ts +121 -0
- package/www/types/rfid/RFIDNotification.d.ts +153 -0
- package/www/types/rfid/TAChallenge.d.ts +7 -0
- package/www/types/rfid/TccParams.d.ts +25 -0
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Enumeration contains a set of constants that define the file type
|
|
3
|
+
* (or logical belonging of the data object) within the context of the
|
|
4
|
+
* communication session with electronic document.
|
|
5
|
+
*/
|
|
6
|
+
export declare enum RFIDDataFileType {
|
|
7
|
+
UNSPECIFIED = 0,
|
|
8
|
+
PASSPORT_DG1 = 1,
|
|
9
|
+
PASSPORT_DG2 = 2,
|
|
10
|
+
PASSPORT_DG3 = 3,
|
|
11
|
+
PASSPORT_DG4 = 4,
|
|
12
|
+
PASSPORT_DG5 = 5,
|
|
13
|
+
PASSPORT_DG6 = 6,
|
|
14
|
+
PASSPORT_DG7 = 7,
|
|
15
|
+
PASSPORT_DG8 = 8,
|
|
16
|
+
PASSPORT_DG9 = 9,
|
|
17
|
+
PASSPORT_DG10 = 10,
|
|
18
|
+
PASSPORT_DG11 = 11,
|
|
19
|
+
PASSPORT_DG12 = 12,
|
|
20
|
+
PASSPORT_DG13 = 13,
|
|
21
|
+
PASSPORT_DG14 = 14,
|
|
22
|
+
PASSPORT_DG15 = 15,
|
|
23
|
+
PASSPORT_DG16 = 16,
|
|
24
|
+
PASSPORT_DG17 = 17,
|
|
25
|
+
PASSPORT_DG18 = 18,
|
|
26
|
+
PASSPORT_DG19 = 19,
|
|
27
|
+
PASSPORT_DG20 = 20,
|
|
28
|
+
PASSPORT_SOD = 21,
|
|
29
|
+
PASSPORT_CVCA = 22,
|
|
30
|
+
PASSPORT_COM = 23,
|
|
31
|
+
DTC_DG17 = 57,
|
|
32
|
+
DTC_DG18 = 58,
|
|
33
|
+
DTC_DG22 = 62,
|
|
34
|
+
DTC_DG23 = 63,
|
|
35
|
+
DTC_DG24 = 64,
|
|
36
|
+
ID_DG1 = 101,
|
|
37
|
+
ID_DG2 = 102,
|
|
38
|
+
ID_DG3 = 103,
|
|
39
|
+
ID_DG4 = 104,
|
|
40
|
+
ID_DG5 = 105,
|
|
41
|
+
ID_DG6 = 106,
|
|
42
|
+
ID_DG7 = 107,
|
|
43
|
+
ID_DG8 = 108,
|
|
44
|
+
ID_DG9 = 109,
|
|
45
|
+
ID_DG10 = 110,
|
|
46
|
+
ID_DG11 = 111,
|
|
47
|
+
ID_DG12 = 112,
|
|
48
|
+
ID_DG13 = 113,
|
|
49
|
+
ID_DG14 = 114,
|
|
50
|
+
ID_DG15 = 115,
|
|
51
|
+
ID_DG16 = 116,
|
|
52
|
+
ID_DG17 = 117,
|
|
53
|
+
ID_DG18 = 118,
|
|
54
|
+
ID_DG19 = 119,
|
|
55
|
+
ID_DG20 = 120,
|
|
56
|
+
ID_DG21 = 121,
|
|
57
|
+
DL_COM = 150,
|
|
58
|
+
DL_DG1 = 151,
|
|
59
|
+
DL_DG2 = 152,
|
|
60
|
+
DL_DG3 = 153,
|
|
61
|
+
DL_DG4 = 154,
|
|
62
|
+
DL_DG5 = 155,
|
|
63
|
+
DL_DG6 = 156,
|
|
64
|
+
DL_DG7 = 157,
|
|
65
|
+
DL_DG8 = 158,
|
|
66
|
+
DL_DG9 = 159,
|
|
67
|
+
DL_DG10 = 160,
|
|
68
|
+
DL_DG11 = 161,
|
|
69
|
+
DL_DG12 = 162,
|
|
70
|
+
DL_DG13 = 163,
|
|
71
|
+
DL_DG14 = 164,
|
|
72
|
+
DL_SOD = 165,
|
|
73
|
+
DL_CE = 166,
|
|
74
|
+
DL_CVCA = 167,
|
|
75
|
+
PACE_CARDACCESS = 200,
|
|
76
|
+
PACE_CARDSECURITY = 201,
|
|
77
|
+
PACE_CHIPSECURITY = 202,
|
|
78
|
+
MIFARE_DATA = 300,
|
|
79
|
+
MIFARE_VALIDITY = 301,
|
|
80
|
+
AUTHENTICITYV2 = 302,
|
|
81
|
+
ATR = 400,
|
|
82
|
+
ESIGN_PK = 500,
|
|
83
|
+
ESIGN_SIGNEDDATA = 501,
|
|
84
|
+
CERTIFICATE = 600,
|
|
85
|
+
MASTERLIST = 601,
|
|
86
|
+
DEFECTLIST = 602,
|
|
87
|
+
DEVIATIONLIST = 603,
|
|
88
|
+
APP_DIRECTORY = 700,
|
|
89
|
+
SESSION = 701,
|
|
90
|
+
LOGDATA = 702,
|
|
91
|
+
CHIP_PROPERTIES = 703,
|
|
92
|
+
SAM_DATA = 800,
|
|
93
|
+
SAM_DATA_MAX = 832,
|
|
94
|
+
VDS = 900,
|
|
95
|
+
VDSNC = 901,
|
|
96
|
+
USERDEFINED = 1000
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
export declare namespace RFIDDataFileType {
|
|
100
|
+
function getTranslation(value: RFIDDataFileType): Promise<string>;
|
|
101
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { AccessControlProcedureType } from "./AccessControlProcedureType";
|
|
2
|
+
import { Application } from "./Application";
|
|
3
|
+
import { CardProperties } from "./CardProperties";
|
|
4
|
+
import { DataField } from "./DataField";
|
|
5
|
+
import { RFIDDataFileType } from "./RFIDDataFileType";
|
|
6
|
+
import { RFIDErrorCodes } from "../../rfid/RFIDErrorCodes";
|
|
7
|
+
import { SecurityObject } from "./SecurityObject";
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Used to describe the results of work with the SDK within the context
|
|
11
|
+
* of the current communication session with electronic document.
|
|
12
|
+
*/
|
|
13
|
+
export declare class RFIDSessionData {
|
|
14
|
+
/**
|
|
15
|
+
* List of containers to store information about the supported procedures
|
|
16
|
+
* of authentication and secure data access within the context of the session.
|
|
17
|
+
*/
|
|
18
|
+
readonly accessControls: AccessControlProcedureType[];
|
|
19
|
+
/**
|
|
20
|
+
* List of containers to store information about the involved ap-plications
|
|
21
|
+
* of electronic document.
|
|
22
|
+
*/
|
|
23
|
+
readonly applications: Application[];
|
|
24
|
+
/**
|
|
25
|
+
* List of containers to store information about the detected
|
|
26
|
+
* document security objects.
|
|
27
|
+
*/
|
|
28
|
+
readonly securityObjects: SecurityObject[];
|
|
29
|
+
/** Set of electronic document chip characteristics. */
|
|
30
|
+
readonly cardProperties: CardProperties | null;
|
|
31
|
+
/** Total number of bytes received from the RFID-chip during the whole session. */
|
|
32
|
+
readonly totalBytesReceived: number;
|
|
33
|
+
/** Total number of bytes transmitted to the RFID-chip during the whole session. */
|
|
34
|
+
readonly totalBytesSent: number;
|
|
35
|
+
/** Status. */
|
|
36
|
+
readonly status: RFIDErrorCodes;
|
|
37
|
+
/** Sign of support of RFID-chip for extended length commands of reading. */
|
|
38
|
+
readonly extLeSupport: RFIDErrorCodes;
|
|
39
|
+
/** Total time of all operations performed during the session, ms. */
|
|
40
|
+
readonly processTime: number;
|
|
41
|
+
/** List of data fields */
|
|
42
|
+
readonly dataFields: DataField[];
|
|
43
|
+
/** List of data groups. */
|
|
44
|
+
readonly dataGroups: RFIDDataFileType[] | null;
|
|
45
|
+
|
|
46
|
+
/** Allows you to deserialize object. */
|
|
47
|
+
static fromJson(jsonObject: any): RFIDSessionData | null;
|
|
48
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare class RFIDValue {
|
|
2
|
+
readonly data?: string;
|
|
3
|
+
readonly length: number;
|
|
4
|
+
readonly status: number;
|
|
5
|
+
readonly type: number;
|
|
6
|
+
readonly format?: string;
|
|
7
|
+
|
|
8
|
+
/** Allows you to deserialize object. */
|
|
9
|
+
static fromJson(jsonObject: any): RFIDValue | null;
|
|
10
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { SignerInfo } from "./SignerInfo";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Structure is used to describe the contents of a single document
|
|
5
|
+
* security object (SO) and the results of its check within the context
|
|
6
|
+
* of the communication session with electronic document.
|
|
7
|
+
*/
|
|
8
|
+
export declare class SecurityObject {
|
|
9
|
+
/** Reference to the source file of the security object data. */
|
|
10
|
+
readonly fileReference: number;
|
|
11
|
+
/** Security object identifier. */
|
|
12
|
+
readonly objectType?: string;
|
|
13
|
+
/** Security object version. */
|
|
14
|
+
readonly version: number;
|
|
15
|
+
/**
|
|
16
|
+
* List of containers to store information about digital
|
|
17
|
+
* signature objects contained in the SO.
|
|
18
|
+
*/
|
|
19
|
+
readonly signerInfos: SignerInfo[];
|
|
20
|
+
/**
|
|
21
|
+
* The list of remarks occured during the scanning procedure.
|
|
22
|
+
* Each element belongs to the {@link LDSParsingErrorCodes}.
|
|
23
|
+
*/
|
|
24
|
+
readonly notifications: number[];
|
|
25
|
+
|
|
26
|
+
/** Allows you to deserialize object. */
|
|
27
|
+
static fromJson(jsonObject: any): SecurityObject | null;
|
|
28
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { CertificateData } from "./CertificateData";
|
|
2
|
+
|
|
3
|
+
export declare class SecurityObjectCertificates {
|
|
4
|
+
readonly securityObject?: CertificateData;
|
|
5
|
+
|
|
6
|
+
/** Allows you to deserialize object. */
|
|
7
|
+
static fromJson(jsonObject: any): SecurityObjectCertificates | null;
|
|
8
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { Authority } from "./Authority";
|
|
2
|
+
import { CertificateChain } from "./CertificateChain";
|
|
3
|
+
import { Extension } from "./Extension";
|
|
4
|
+
import { RFIDValue } from "./RFIDValue";
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Structure is used to store the result of the verification of a single digital
|
|
8
|
+
* signature of the number present in EF.SOD.
|
|
9
|
+
*/
|
|
10
|
+
export declare class SignerInfo {
|
|
11
|
+
/** Data to hash. */
|
|
12
|
+
readonly dataToHash?: string;
|
|
13
|
+
/** Digital signature hash-function algorithm identifier. */
|
|
14
|
+
readonly digestAlgorithm?: string;
|
|
15
|
+
/** Result of the digital signature verification. */
|
|
16
|
+
readonly paStatus: number;
|
|
17
|
+
/** Digital signature algorithm identifier. */
|
|
18
|
+
readonly signatureAlgorithm?: string;
|
|
19
|
+
/** Version of the digital signature data structure. */
|
|
20
|
+
readonly version: number;
|
|
21
|
+
/** Identifier of the necessary certificate issuer. */
|
|
22
|
+
readonly issuer?: Authority;
|
|
23
|
+
/** Serial number of the necessary certificate. */
|
|
24
|
+
readonly serialNumber?: RFIDValue;
|
|
25
|
+
/** Binary data of the verified digital signature. */
|
|
26
|
+
readonly signature?: RFIDValue;
|
|
27
|
+
/** List of the signed attributes. */
|
|
28
|
+
readonly signedAttributes: Extension[];
|
|
29
|
+
/** Signature object identifier of the necessary certificate. */
|
|
30
|
+
readonly subjectKeyIdentifier?: RFIDValue;
|
|
31
|
+
/** Certificate chain, used for the digital signature verification. */
|
|
32
|
+
readonly certificateChain: CertificateChain[];
|
|
33
|
+
/**
|
|
34
|
+
* The list of remarks occured during the scanning procedure.
|
|
35
|
+
* Each element belongs to the {@link LDSParsingErrorCodes}.
|
|
36
|
+
*/
|
|
37
|
+
readonly notifications: number[];
|
|
38
|
+
|
|
39
|
+
/** Allows you to deserialize object. */
|
|
40
|
+
static fromJson(jsonObject: any): SignerInfo | null;
|
|
41
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { CheckResult } from "./CheckResult";
|
|
2
|
+
|
|
3
|
+
/** Container for an optical related scanning statuses. */
|
|
4
|
+
export declare class OpticalStatus {
|
|
5
|
+
/** Summary of all optical results. */
|
|
6
|
+
readonly overallStatus: CheckResult;
|
|
7
|
+
/** MRZ verification: values validity, dates, checkdigits verification. */
|
|
8
|
+
readonly mrz: CheckResult;
|
|
9
|
+
/**
|
|
10
|
+
* Text fields valitity: values validity for specific fields, cross-comparison
|
|
11
|
+
* of values from different sources, dates & checkdigits verification.
|
|
12
|
+
*/
|
|
13
|
+
readonly text: CheckResult;
|
|
14
|
+
/** Check status if document type was recognized or not. */
|
|
15
|
+
readonly docType: CheckResult;
|
|
16
|
+
/** Authenticity verification status. */
|
|
17
|
+
readonly security: CheckResult;
|
|
18
|
+
/** Input images quality verification status. */
|
|
19
|
+
readonly imageQA: CheckResult;
|
|
20
|
+
/** Document validity period verification status. */
|
|
21
|
+
readonly expiry: CheckResult;
|
|
22
|
+
/** Visible Digital Seal verification status. */
|
|
23
|
+
readonly vds: CheckResult;
|
|
24
|
+
/** Number of scanned document pages. */
|
|
25
|
+
readonly pagesCount: number;
|
|
26
|
+
|
|
27
|
+
/** Allows you to deserialize object. */
|
|
28
|
+
static fromJson(jsonObject: any): OpticalStatus | null;
|
|
29
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { CheckResult } from "./CheckResult";
|
|
2
|
+
|
|
3
|
+
/** Container for a RFID related scanning statuses. */
|
|
4
|
+
export declare class RFIDStatus {
|
|
5
|
+
/** Summary of all RFID results. */
|
|
6
|
+
readonly overallStatus: CheckResult;
|
|
7
|
+
/** Passive authentication status. */
|
|
8
|
+
readonly pa: CheckResult;
|
|
9
|
+
/** Chip authentication status. */
|
|
10
|
+
readonly ca: CheckResult;
|
|
11
|
+
/** Acitve authentication status. */
|
|
12
|
+
readonly aa: CheckResult;
|
|
13
|
+
/** Terminal authentication status. */
|
|
14
|
+
readonly ta: CheckResult;
|
|
15
|
+
/** Basics access control status. */
|
|
16
|
+
readonly bac: CheckResult;
|
|
17
|
+
/** Password authenticated connection establishment status. */
|
|
18
|
+
readonly pace: CheckResult;
|
|
19
|
+
|
|
20
|
+
/** Allows you to deserialize object. */
|
|
21
|
+
static fromJson(jsonObject: any): RFIDStatus | null;
|
|
22
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { CheckResult } from "./CheckResult";
|
|
2
|
+
import { OpticalStatus } from "./OpticalStatus";
|
|
3
|
+
import { RFIDStatus } from "./RFIDStatus";
|
|
4
|
+
|
|
5
|
+
/** Provision of document verification status. */
|
|
6
|
+
export declare class ResultsStatus {
|
|
7
|
+
/** Summary of all results. */
|
|
8
|
+
readonly overallStatus: CheckResult;
|
|
9
|
+
/** Summary of all optical results. The same value as {@link OpticalStatus#overallStatus} */
|
|
10
|
+
readonly optical: CheckResult;
|
|
11
|
+
/** Container for an optical related scanning statuses. */
|
|
12
|
+
readonly detailsOptical: OpticalStatus;
|
|
13
|
+
/** Summary of all RFID results. Same as {@link RFIDStatus#overallStatus}. */
|
|
14
|
+
readonly rfid: CheckResult;
|
|
15
|
+
/** Container for a RFID related scanning statuses. */
|
|
16
|
+
readonly detailsRFID: RFIDStatus;
|
|
17
|
+
/** Comparison status for portrait in the document aganist live or external image. */
|
|
18
|
+
readonly portrait: CheckResult;
|
|
19
|
+
/** Verification status for document data against database. */
|
|
20
|
+
readonly stopList: CheckResult;
|
|
21
|
+
|
|
22
|
+
/** Allows you to deserialize object. */
|
|
23
|
+
static fromJson(jsonObject: any): ResultsStatus | null;
|
|
24
|
+
}
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
export declare enum LDSParsingErrorCodes {
|
|
2
|
+
OK = 1,
|
|
3
|
+
ASN_INCORRECT_DATA = -2147483647,
|
|
4
|
+
ASN_NOT_ENOUGH_DATA = -2147483646,
|
|
5
|
+
ASN_CONTENTS_UNEXPECTED_DATA = -2147483645,
|
|
6
|
+
ASN_SIGNED_DATA_INCORRECT_DATA = -2147483640,
|
|
7
|
+
ASN_SIGNED_DATA_ENCAP_CONTENTS_INCORRECT_DATA = -2147483639,
|
|
8
|
+
ASN_SIGNED_DATA_VERSION_INCORRECT_DATA = -2147483638,
|
|
9
|
+
ASN_SIGNED_DATA_DIGEST_ALGORITHMS_INCORRECT_DATA = -2147483631,
|
|
10
|
+
ASN_LDS_OBJECT_INCORRECT_DATA = -2147483629,
|
|
11
|
+
ASN_LDS_OBJECT_VERSION_INCORRECT_DATA = -2147483628,
|
|
12
|
+
ASN_LDS_OBJECT_DIGEST_ALGORITHM_INCORRECT_DATA = -2147483627,
|
|
13
|
+
ASN_LDS_OBJECT_DG_HASHES_INCORRECT_DATA = -2147483626,
|
|
14
|
+
ASN_LDS_OBJECT_VERSION_INFO_INCORRECT_DATA = -2147483630,
|
|
15
|
+
ASN_CERTIFICATE_INCORRECT_DATA = -2147483625,
|
|
16
|
+
ASN_CERTIFICATE_VERSION_INCORRECT_DATA = -2147483624,
|
|
17
|
+
ASN_CERTIFICATE_SN_INCORRECT_DATA = -2147483623,
|
|
18
|
+
ASN_CERTIFICATE_SIGNATURE_INCORRECT_DATA = -2147483622,
|
|
19
|
+
ASN_CERTIFICATE_ISSUER_INCORRECT_DATA = -2147483621,
|
|
20
|
+
ASN_CERTIFICATE_VALIDITY_INCORRECT_DATA = -2147483620,
|
|
21
|
+
ASN_CERTIFICATE_SUBJECT_INCORRECT_DATA = -2147483619,
|
|
22
|
+
ASN_CERTIFICATE_SUBJECT_PK_INCORRECT_DATA = -2147483618,
|
|
23
|
+
ASN_CERTIFICATE_EXTENSIONS_INCORRECT_DATA = -2147483617,
|
|
24
|
+
ASN_SIGNER_INFO_INCORRECT_DATA = -2147483616,
|
|
25
|
+
ASN_SIGNER_INFO_VERSION_INCORRECT_DATA = -2147483615,
|
|
26
|
+
ASN_SIGNER_INFO_SID_INCORRECT_DATA = -2147483614,
|
|
27
|
+
ASN_SIGNER_INFO_DIGEST_ALG_INCORRECT_DATA = -2147483613,
|
|
28
|
+
ASN_SIGNER_INFO_SIGNED_ATTRS_INCORRECT_DATA = -2147483612,
|
|
29
|
+
ASN_SIGNER_INFO_SIGN_ALG_INCORRECT_DATA = -2147483611,
|
|
30
|
+
ASN_SIGNER_INFO_SIGNATURE_INCORRECT_DATA = -2147483610,
|
|
31
|
+
ASN_SIGNER_INFO_UNSIGNED_ATTRS_INCORRECT_DATA = -2147483609,
|
|
32
|
+
ICAO_LDS_OBJECT_UNSUPPORTED_DIGEST_ALGORITHM = -2147483592,
|
|
33
|
+
ICAO_SIGNED_DATA_SIGNER_INFOS_EMPTY = -2147483591,
|
|
34
|
+
ICAO_SIGNER_INFO_UNSUPPORTED_DIGEST_ALGORITHM = -2147483590,
|
|
35
|
+
ICAO_SIGNER_INFO_UNSUPPORTED_SIGNATURE_ALGORITHM = -2147483589,
|
|
36
|
+
ICAO_SIGNER_INFO_MESSAGE_DIGEST_ERROR = -2147483588,
|
|
37
|
+
ICAO_SIGNER_INFO_SIGNED_ATTRS_MISSED = -2147483586,
|
|
38
|
+
AUTH_SIGNER_INFO_CANT_FIND_CERTIFICATE = -2147483587,
|
|
39
|
+
AUTH_ERROR = -2147483568,
|
|
40
|
+
AUTH_UNSUPPORTED_SIGNATURE_ALGORITHM = -2147483567,
|
|
41
|
+
AUTH_UNSUPPORTED_PUBLIC_KEY_ALGORITHM = -2147483566,
|
|
42
|
+
AUTH_MESSED_ALGORITHMS = -2147483565,
|
|
43
|
+
AUTH_PUBLIC_KEY_DATA_INVALID = -2147483564,
|
|
44
|
+
AUTH_ALGORITHM_PARAMETERS_DATA_INVALID = -2147483563,
|
|
45
|
+
AUTH_SIGNATURE_DATA_INVALID = -2147483562,
|
|
46
|
+
AUTH_UNSUPPORTED_DIGEST_ALGORITHM = -2147483561,
|
|
47
|
+
AUTH_SIGNATURE_DATA_INCORRECT = -2147483560,
|
|
48
|
+
AUTH_ALGORITHM_PARAMETERS_NOT_DEFINED = -2147483559,
|
|
49
|
+
AUTH_SIGNATURE_CHECK_FAILED = -2147483558,
|
|
50
|
+
DG_WRONG_TAH = -2147483536,
|
|
51
|
+
DG_CONTENTS_UNEXPECTED_DATA = -2147483535,
|
|
52
|
+
BAP_SYMMETRIC_CYPHER_CANT_INITIALIZE = -2130706415,
|
|
53
|
+
PACE_INFO_NOT_AVAILABLE = -2130706392,
|
|
54
|
+
PACE_SYMMETRIC_CYPHER_CANT_INITIALIZE = -2130706391,
|
|
55
|
+
PACE_KEY_AGREEMENT_CANT_INITIALIZE = -2130706390,
|
|
56
|
+
PACE_EPHEMERAL_KEYS_CANT_CREATE = -2130706389,
|
|
57
|
+
PACE_MAPPING_CANT_DECODE_NONCE = -2130706388,
|
|
58
|
+
PACE_SHARED_SECRET_CANT_CREATE = -2130706387,
|
|
59
|
+
PACE_DOMAIN_PARAMS_UNSUPPORTED_FORMAT = -2130706386,
|
|
60
|
+
PACE_EPHEMERAL_KEYS_INCORRECT = -2130706385,
|
|
61
|
+
PACE_MAPPING_EPHEMERAL_KEYS_INCORRECT = -2130706384,
|
|
62
|
+
PACE_MAPPING_CANT_PERFORM = -2130706383,
|
|
63
|
+
PACE_NON_MATCHING_AUTH_TOKENS = -2130706382,
|
|
64
|
+
PACE_CAM_DATA_INCORRECT = -2130706381,
|
|
65
|
+
PACE_CAM_DATA_CANT_VERIFY = -2130706380,
|
|
66
|
+
PACE_CAM_DATA_NON_MATCHING = -2130706379,
|
|
67
|
+
PACE_IM_SCHEME_INCORRECT = -2130706378,
|
|
68
|
+
PACE_IM_RANDOM_MAPPING_FAILED = -2130706377,
|
|
69
|
+
CA_CANT_FIND_PUBLIC_KEY = -2130706376,
|
|
70
|
+
CA_CANT_FIND_INFO = -2130706375,
|
|
71
|
+
CA_INCORRECT_VERSION = -2130706374,
|
|
72
|
+
CA_CANT_FIND_DOMAIN_PARAMETERS = -2130706373,
|
|
73
|
+
CA_KEY_AGREEMENT_CANT_INITIALIZE = -2130706372,
|
|
74
|
+
CA_PUBLIC_KEY_UNSUPPORTED_ALGORITHM = -2130706371,
|
|
75
|
+
CA_EPHEMERAL_KEYS_CANT_CREATE = -2130706370,
|
|
76
|
+
CA_SHARED_SECRET_CANT_CREATE = -2130706369,
|
|
77
|
+
CA_NON_MATCHING_AUTH_TOKENS = -2130706368,
|
|
78
|
+
TA_INCORRECT_VERSION = -2130706360,
|
|
79
|
+
TA_CANT_BUILD_CERTIFICATE_CHAIN = -2130706359,
|
|
80
|
+
TA_CANT_FIND_IS_PRIVATE_KEY = -2130706358,
|
|
81
|
+
TA_PUBLIC_KEY_UNSUPPORTED_ALGORITHM = -2130706357,
|
|
82
|
+
TA_SIGNATURE_BUILDING_ERROR = -2130706356,
|
|
83
|
+
TA_INVALID_KEY_ALGORITHM_PARAMETERS = -2130706355,
|
|
84
|
+
AA_PUBLIC_KEY_UNSUPPORTED_ALGORITHM = -2130706344,
|
|
85
|
+
AA_PUBLIC_KEY_INCORRECT_DATA = -2130706343,
|
|
86
|
+
AA_PUBLIC_KEY_INCORRECT_PARAMETERS = -2130706342,
|
|
87
|
+
AA_PUBLIC_KEY_UNDEFINED_PARAMETERS = -2130706341,
|
|
88
|
+
AA_SIGNATURE_INCORRECT_DATA = -2130706340,
|
|
89
|
+
AA_UNSUPPORTED_RECOVERY_SCHEME = -2130706339,
|
|
90
|
+
AA_INCORRECT_TRAILER = -2130706338,
|
|
91
|
+
AA_UNSUPPORTED_DIGEST_ALGORITHM = -2130706337,
|
|
92
|
+
RI_SECTOR_KEY_CANT_FIND = -2130706312,
|
|
93
|
+
RI_SECTOR_KEY_INCORRECT_DATA = -2130706311,
|
|
94
|
+
RI_SECTOR_KEY_INCOMPLETE_DATA = -2130706310,
|
|
95
|
+
CV_CERTIFICATE_MISSING_MANDATORY_DATA_PK = -2130706328,
|
|
96
|
+
CV_CERTIFICATE_PUBLIC_KEY_UNSUPPORTED = -2130706326,
|
|
97
|
+
CV_CERTIFICATE_CHAT_UNSUPPORTED_TERMINAL_TYPE = -2130706325,
|
|
98
|
+
CV_CERTIFICATE_PRIVATE_KEY_UNSUPPORTED = -2130706426,
|
|
99
|
+
CV_CERTIFICATE_PRIVATE_KEY_INVALID_PARAMS = -2130706323,
|
|
100
|
+
CV_CERTIFICATE_INCORRECT_DATA = -2130705976,
|
|
101
|
+
CV_CERTIFICATE_CPI_INCORRECT_DATA = -2130705975,
|
|
102
|
+
CV_CERTIFICATE_CAR_INCORRECT_DATA = -2130705974,
|
|
103
|
+
CV_CERTIFICATE_PUBLIC_KEY_INCORRECT_DATA = -2130705973,
|
|
104
|
+
CV_CERTIFICATE_CHR_INCORRECT_DATA = -2130705972,
|
|
105
|
+
CV_CERTIFICATE_CHAT_INCORRECT_DATA = -2130705971,
|
|
106
|
+
CV_CERTIFICATE_VALID_FROM_INCORRECT_DATA = -2130705970,
|
|
107
|
+
CV_CERTIFICATE_VALID_TO_INCORRECT_DATA = -2130705969,
|
|
108
|
+
CV_CERTIFICATE_EXTENSIONS_INCORRECT_DATA = -2130705968,
|
|
109
|
+
CV_CERTIFICATE_PRIVATE_KEY_INCORRECT_DATA = -2130705967,
|
|
110
|
+
CV_CERTIFICATE_PRIVATE_KEY_MISSING = -2130705966,
|
|
111
|
+
VDS_UNSUPPORTED_VERSION = -2130705432,
|
|
112
|
+
VDS_ISSUING_COUNTRY_SIZE = -2130705431,
|
|
113
|
+
VDS_ISSUING_COUNTRY_INCORRECT_DATA = -2130705430,
|
|
114
|
+
VDS_SIGNER_CERTIFICATE_SIZE = -2130705429,
|
|
115
|
+
VDS_SIGNER_CERTIFICATE_DATA = -2130705428,
|
|
116
|
+
VDS_SIGNATURE_INCORRECT_DATA = -2130705427,
|
|
117
|
+
VDS_NC_INCORRECT_DATA = -2130705176,
|
|
118
|
+
VDS_NC_MISSING_OR_INCORRECT_DATA = -2130705175,
|
|
119
|
+
VDS_NC_MISSING_OR_INCORRECT_HEADER = -2130705174,
|
|
120
|
+
VDS_NC_MISSING_OR_INCORRECT_TYPE = -2130705173,
|
|
121
|
+
VDS_NC_MISSING_OR_INCORRECT_VERSION = -2130705172,
|
|
122
|
+
VDS_NC_MISSING_OR_INCORRECT_ISSUING_COUNTRY = -2130705171,
|
|
123
|
+
VDS_NC_MISSING_OR_INCORRECT_MESSAGE = -2130705170,
|
|
124
|
+
VDS_NC_MISSING_OR_INCORRECT_SIGNATURE = -2130705169,
|
|
125
|
+
VDS_NC_MISSING_OR_INCORRECT_SIG_ALGORITHM = -2130705168,
|
|
126
|
+
VDS_NC_MISSING_OR_INCORRECT_CERTIFICATE = -2130705167,
|
|
127
|
+
VDS_NC_MISSING_OR_INCORRECT_SIG_VALUE = -2130705166
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
export declare namespace LDSParsingErrorCodes {
|
|
131
|
+
function getTranslation(value: LDSParsingErrorCodes): Promise<string>;
|
|
132
|
+
}
|