Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
A
aliyun_face_plugin
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
openSourceLibrary
aliyun_face_plugin
Commits
7bb0a43e
提交
7bb0a43e
authored
4月 14, 2025
作者:
祁增奎
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
增加扩展库
上级
99b0a5b1
显示空白字符变更
内嵌
并排
正在显示
10 个修改的文件
包含
205 行增加
和
0 行删除
+205
-0
DTFIdentityManager
ios/Products/DTFIdentityManager.framework/DTFIdentityManager
+0
-0
DTFIdentityManager.h
...DTFIdentityManager.framework/Headers/DTFIdentityManager.h
+25
-0
DTFIdentityPublicApi.h
...FIdentityManager.framework/Headers/DTFIdentityPublicApi.h
+15
-0
DTFSdk.h
ios/Products/DTFIdentityManager.framework/Headers/DTFSdk.h
+44
-0
ZimJSApiHandler.h
...ts/DTFIdentityManager.framework/Headers/ZimJSApiHandler.h
+14
-0
ZimRpcManager.h
...ucts/DTFIdentityManager.framework/Headers/ZimRpcManager.h
+65
-0
Info.plist
ios/Products/DTFIdentityManager.framework/Info.plist
+0
-0
module.modulemap
...cts/DTFIdentityManager.framework/Modules/module.modulemap
+6
-0
PrivacyInfo.xcprivacy
...oducts/DTFIdentityManager.framework/PrivacyInfo.xcprivacy
+36
-0
InfoPlist.strings
...s/DTFIdentityManager.framework/en.lproj/InfoPlist.strings
+0
-0
没有找到文件。
ios/Products/DTFIdentityManager.framework/DTFIdentityManager
0 → 100644
浏览文件 @
7bb0a43e
File added
ios/Products/DTFIdentityManager.framework/Headers/DTFIdentityManager.h
0 → 100644
浏览文件 @
7bb0a43e
//
// DTFIdentityManager.h
// DTFIdentityManager
//
// Created by mengbingchuan on 2022/11/23.
// Copyright © 2022 DTF. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "ZimRpcManager.h"
#import <DTFUtility/DTFFaceIdentityProtocol.h>
//version 2.3.29
NS_ASSUME_NONNULL_BEGIN
typedef
void
(
^
ZIMCallback
)(
ZIMResponse
*
response
);
@interface
DTFIdentityManager
:
NSObject
<
DTFFaceIdentityProtocol
>
+
(
DTFIdentityManager
*
)
sharedInstance
;
@end
NS_ASSUME_NONNULL_END
ios/Products/DTFIdentityManager.framework/Headers/DTFIdentityPublicApi.h
0 → 100755
浏览文件 @
7bb0a43e
//
// DTFIdentityPublicApi.h
// DTFIdentityManager
//
// Created by richard on 22/11/2017.
// Copyright © 2017 DTF. All rights reserved.
//
#ifndef DTFIdentityPublicApi_h
#define DTFIdentityPublicApi_h
#import <DTFIdentityManager/DTFIdentityManager.h>
#import <DTFIdentityManager/DTFSdk.h>
#endif
/* DTFIdentityPublicApi_h */
ios/Products/DTFIdentityManager.framework/Headers/DTFSdk.h
0 → 100755
浏览文件 @
7bb0a43e
//
// DTFSdk.h
// DTFIdentityManager
//
// Created by richard on 22/11/2017.
// Copyright © 2017 DTF. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface
DTFSdk
:
NSObject
/*初始化接口,尽可能早调用
*/
+
(
void
)
init
;
/* IPV6的初始化接口 只有你的网络环境强制要求是IPV6的时候,才调用initIPv6。
*/
+
(
void
)
initIPv6
;
+
(
NSString
*
)
getVersion
;
+
(
void
)
preload
:(
NSDictionary
*
)
param
completion
:(
void
(
^
)(
BOOL
success
))
completion
;
/*同步获取设备指纹token
1)SDK初始化后需要经过一段时间计算才能获取到deviceToken,建议间隔3秒以上;
2)deviceToken短期有效,不能长期缓存使用,不能作为设备唯一标识。
*@param session 要获取的session缓冲区
*@param lenth session缓冲区的长度,此值应不小于384 比如:char session[384] = {0};
*@return 0表示成功,其他表示失败
*/
+
(
int
)
getSession
:(
char
*
)
session
:
(
const
int
)
lenth
DEPRECATED_MSG_ATTRIBUTE
(
"use getMobileSession instead"
);
/*同步获取设备指纹token
1)SDK初始化后需要经过一段时间计算才能获取到deviceToken,建议间隔3秒以上;
2)如果没有获取到token,返回的内容是@"",没有内容的字符串。
*/
+
(
NSString
*
)
getMobileSession
:(
NSString
*
)
certifyID
;
//获取无线保镖基本数据。
+
(
NSDictionary
*
)
getSecurityInfo
DEPRECATED_MSG_ATTRIBUTE
(
"won't use any more"
);;
@end
ios/Products/DTFIdentityManager.framework/Headers/ZimJSApiHandler.h
0 → 100755
浏览文件 @
7bb0a43e
//
// ZimJSApiAdapter.h
// DTFIdentityManager
//
// Created by 晗羽 on 25/07/2017.
// Copyright © 2017 DTF. All rights reserved.
//
#import <UIKit/UIKit.h>
typedef
void
(
^
ZIMJSApilCallbackBlock
)(
id
responseData
);
@interface
ZimJSApiHandler
:
NSObject
-
(
void
)
handler
:(
NSDictionary
*
)
data
contextInfo
:(
NSDictionary
*
)
context
callback
:(
ZIMJSApilCallbackBlock
)
callbac
;
@end
ios/Products/DTFIdentityManager.framework/Headers/ZimRpcManager.h
0 → 100755
浏览文件 @
7bb0a43e
//
// ZIMRpcManager.h
// DTFIdentityManager
//
// Created by richard on 26/02/2018.
// Copyright © 2018 com. DTF.iphoneclient.DTF. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <DTFUtility/DTFUtility.h>
#import <DTFUtility/DTFRPCProxyProtocol.h>
/**
* rpc结果回调
*
* @param success 网络交互是否成功(不代表服务端返回的结果)
* @param result 服务端返回的结果
*/
@interface
ZimRpcManager
:
NSObject
@property
(
nonatomic
,
strong
)
APBToygerBioBisConfigManager
*
protoclModel
;
@property
(
nonatomic
,
copy
)
NSString
*
zimId
;
@property
(
nonatomic
,
copy
)
NSDictionary
*
ossConfig
;
@property
(
nonatomic
,
weak
)
id
<
DTFRPCProxyProtocol
>
rpcDelegate
;
//代理模式
//- (void)doValidateRequetViaDelegate:(ZimValidateRequest * )request withcompletionBlock:(rpcCompletionBlock)blk;
/**
* zim init request
*
* @param request 初始化请求
* @param blk 网络请求结果回调处理,result为ZimInitResponse
*/
-
(
void
)
doFastUploadInitRequest
:(
NSDictionary
*
)
request
withcompletionBlock
:(
DTFRpcCompletionBlock
)
blk
;
/**
* zim validate request
*
* @param request validate请求
* @param blk 网络请求结果回调处理,result为ZimValidateResponse
*/
-
(
void
)
doFastUploadValidateRequest
:(
ZimValidateRequest
*
)
request
withcompletionBlock
:(
DTFRpcCompletionBlock
)
blk
;
//OCR接口
-
(
void
)
doSendOCRContent
:(
NSString
*
)
certifyId
idSide
:(
NSString
*
)
side
withImage
:(
NSData
*
)
imageData
withcompletionBlock
:(
rpcCompletionBlock
)
blk
;
//EKYC OCR接口
-
(
void
)
doSendEKYCOCRContent
:(
NSDictionary
*
)
params
withcompletionBlock
:(
DTFRpcCompletionBlock
)
blk
;
//EKYC OCR确认接口
-
(
void
)
doSendEKYCOCRContentConfrim
:(
NSDictionary
*
)
params
withcompletionBlock
:(
DTFRpcCompletionBlock
)
blk
;
//侧信道oss上传
-
(
void
)
doUploadOSSContent
:(
NSDictionary
*
)
params
withcompletionBlock
:(
DTFRpcCompletionBlock
)
blk
;
// SMS 请求接口
-
(
void
)
getSMSCode
:(
NSDictionary
*
)
serviceParameters
completionBlock
:(
DTFRpcCompletionBlock
)
blk
;
// SMS 验证接口
-
(
void
)
verifySMSCode
:(
NSDictionary
*
)
serviceParameters
completionBlock
:(
DTFRpcCompletionBlock
)
blk
;
@end
ios/Products/DTFIdentityManager.framework/Info.plist
0 → 100644
浏览文件 @
7bb0a43e
File added
ios/Products/DTFIdentityManager.framework/Modules/module.modulemap
0 → 100644
浏览文件 @
7bb0a43e
framework module DTFIdentityManager {
umbrella header "DTFIdentityManager.h"
export *
module * { export * }
}
ios/Products/DTFIdentityManager.framework/PrivacyInfo.xcprivacy
0 → 100644
浏览文件 @
7bb0a43e
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist
version=
"1.0"
>
<dict>
<key>
NSPrivacyCollectedDataTypes
</key>
<array>
<dict>
<key>
NSPrivacyCollectedDataType
</key>
<string></string>
<key>
NSPrivacyCollectedDataTypeLinked
</key>
<false/>
<key>
NSPrivacyCollectedDataTypeTracking
</key>
<false/>
<key>
NSPrivacyCollectedDataTypePurposes
</key>
<array>
<string></string>
</array>
</dict>
</array>
<key>
NSPrivacyTrackingDomains
</key>
<array/>
<key>
NSPrivacyTracking
</key>
<false/>
<key>
NSPrivacyAccessedAPITypes
</key>
<array>
<dict>
<key>
NSPrivacyAccessedAPITypeReasons
</key>
<array>
<string>
CA92.1
</string>
</array>
<key>
NSPrivacyAccessedAPIType
</key>
<string>
NSPrivacyAccessedAPICategoryUserDefaults
</string>
</dict>
</array>
</dict>
</plist>
ios/Products/DTFIdentityManager.framework/en.lproj/InfoPlist.strings
0 → 100644
浏览文件 @
7bb0a43e
File added
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论