-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #368 from BlinkID/jenkins/stable-build
Jenkins/stable build
- Loading branch information
Showing
689 changed files
with
4,516 additions
and
3,594 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
Microblink.xcframework/ios-arm64/Microblink.framework/Headers/MBCameraFrames.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// | ||
// MBCameraFrames.h | ||
// BlinkShowcaseDev | ||
// | ||
// Created by Mijo Gracanin on 04.04.2022.. | ||
// | ||
|
||
#ifndef MBCameraFrames_h | ||
#define MBCameraFrames_h | ||
|
||
@protocol MBCameraFrames | ||
|
||
@required | ||
|
||
/** | ||
* Configure the recognizer to save the raw camera frames. | ||
* This significantly increases memory consumption. | ||
* | ||
* Default: NO | ||
*/ | ||
@property (nonatomic, assign) BOOL saveCameraFrames; | ||
|
||
@end | ||
|
||
#endif /* MBCameraFrames_h */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 63 additions & 0 deletions
63
Microblink.xcframework/ios-arm64/Microblink.framework/Headers/MBCryptoUploader.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
// | ||
// MBCryptoUploader.h | ||
// BlinkID-app | ||
// | ||
// Created by Luka Zuanovic MB on 28/03/2017. | ||
// Copyright © 2017 Microblink. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
#import <UIKit/UIKit.h> | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@interface MBCryptoUploader : NSObject | ||
|
||
/** | ||
Sets name of all encrypted data that will be uploaded henceforth. | ||
@warning This method must be invoked at least once or no data will ever be uploaded. | ||
@param dataName Name of the uploaded data. Cannot be nil nor empty. | ||
*/ | ||
- (void)setDataNameForFutureUploads:(nonnull NSString *)dataName; | ||
|
||
/** | ||
Method used to upload an encrypted image. | ||
This method will do nothing and return 0 should there be any exception while encrypting or uploading the data. | ||
@param image Image to encrytpt and upload. | ||
@param url where the image is uploaded | ||
@return Total size (approximate) of the uploaded data. | ||
*/ | ||
- (NSUInteger)uploadImage:(nonnull UIImage *)image url:(nonnull NSString *)url; | ||
|
||
/** | ||
Method used to upload an encrypted image, metadata and encrypted secret metadata. | ||
This method will do nothing and return 0 should there be any exception while encrypting or uploading the data. | ||
@param image Image to encrypt and upload. | ||
@param metadata Metadata to upload. | ||
@param secretMetadata Metadata to encrypt and upload. | ||
@param url where the image is uploaded | ||
@return Total size (approximate) of the uploaded data. | ||
*/ | ||
- (NSUInteger)uploadImage:(nonnull UIImage *)image metadata:(nullable NSString *)metadata secretMetadata:(nullable NSString *)secretMetadata url:(nonnull NSString *)url; | ||
|
||
/** | ||
Method used to upload an encrypted image, metadata, encrypted secret metadata and other data. | ||
This method will do nothing and return 0 should there be any exception while encrypting or uploading the data. | ||
@param image Image to encrypt and upload. | ||
@param metadata Metadata to upload. | ||
@param secretMetadata Metadata to encrypt and upload. | ||
@param data Data, in key value pairs, to upload. | ||
@param url where the image is uploaded | ||
@return Total size (approximate) of the uploaded data. | ||
*/ | ||
- (NSUInteger)uploadImage:(nonnull UIImage *)image metadata:(nullable NSString *)metadata secretMetadata:(nullable NSString *)secretMetadata otherData:(nullable NSDictionary<NSString *, NSString *> *)data url:(nonnull NSString *)url; | ||
|
||
- (NSUInteger)uploadData:(NSData *)data metadata:(NSString *)metadata secretMetadata:(NSString *)secretMetadata otherData:(NSDictionary<NSString *, NSString *> *)otherData fileType:(NSString *)fileType url:(nonnull NSString *)url; | ||
|
||
NS_ASSUME_NONNULL_END | ||
|
||
@end |
54 changes: 54 additions & 0 deletions
54
Microblink.xcframework/ios-arm64/Microblink.framework/Headers/MBDataMatchDetailedInfo.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
// | ||
// MBDataMatchDetailedInfo.hpp | ||
// BlinkShowcaseDev | ||
// | ||
// Created by Mijo Gracanin on 02.06.2022.. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
#import "MBMicroblinkDefines.h" | ||
#import "MBCombinedRecognizerResult.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
MB_CLASS_AVAILABLE_IOS(9.0) | ||
@interface MBDataMatchDetailedInfo : NSObject | ||
|
||
/** | ||
* Returns result of the data matching algorithm for scanned parts/sides of the document. | ||
* For example if date of expiry is scanned from the front and back side | ||
* of the document and values do not match, this method will return {@link DataMatchResult#Failed}. | ||
* Result will be {@link DataMatchResult#Success} only if scanned values for all fields that are | ||
* compared are the same. If data matching has not been performed, result will be | ||
* {@link DataMatchResult#NotPerformed}. | ||
* | ||
* @return result of the data matching algorithm for scanned parts/sides of the document. | ||
*/ | ||
- (MBDataMatchResult) getDataMatchResult; | ||
|
||
/** | ||
* The result of data match on date of birth field. | ||
* | ||
* @return result of the data matching algorithm for date of birth field. | ||
*/ | ||
- (MBDataMatchResult) getDateOfBirth; | ||
|
||
/** | ||
* The result of data match on date of expiry field. | ||
* | ||
* @return result of the data matching algorithm for date of expiry field. | ||
*/ | ||
- (MBDataMatchResult) getDateOfExpiry; | ||
/** | ||
* The result of data match on document number field. | ||
* | ||
* @return result of the data matching algorithm for document number field. | ||
*/ | ||
- (MBDataMatchResult) getDocumentNumber; | ||
|
||
|
||
- (instancetype)init NS_UNAVAILABLE; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Microblink.xcframework/ios-arm64/Microblink.framework/Headers/MBImage.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// | ||
// PPImage.h | ||
// MBImage.h | ||
// BlinkIdFramework | ||
// | ||
// Created by Dino on 25/02/16. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.