12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- #import <Foundation/Foundation.h>
- #import "BioAuthFacade.h"
- typedef enum {
- BIO_FACE = 100,
- BIO_VOICE = 101,
- BIO_HANDWRITING = 103,
- BIO_IDPAPERS = 107,
- BIO_CARD = 109,
- BIO_DTF_DOC = 110,
- BIO_FACE_VOICE = 202,
- BIO_FACE_EYE = 201,
- BIO_CARD_FACE = 200,
- BIO_TOYGER = 300,
- }APBBioType;
- typedef enum {
- ACTION_COLLECT = 300,
- ACTION_VERFIY = 301,
- }APBActionType;
- @interface APBAuthEngine : NSObject
- + (NSString *)getBioMetaInfo;
- + (void)preLoad;
- - (void)authWithRequest:(APBRequest *)request withCallback:(BioAuthCallback)callback;
- - (void)exec:(APBCommand *)command withCompletionCallback:(BioAuthExecCallback)callback;
- - (BOOL)isBusy;
-
- - (NSString *)version;
- + (NSString *)getAuthFactorName;
- @end
|