interface_i_executor_pinauth.md 6.9 KB
Newer Older
D
hdi api  
duangavin123 已提交
1 2 3
# IExecutor


Z
z00524957 已提交
4
## 概述
D
hdi api  
duangavin123 已提交
5

D
duangavin123 已提交
6
定义执行器标准API接口。接口可用于获取执行器信息,获取凭据模版信息,注册口令,认证口令,删除口令等。
D
hdi api  
duangavin123 已提交
7

Z
z00524957 已提交
8
**Since:**
D
hdi api  
duangavin123 已提交
9

D
duangavin123 已提交
10
3.2
D
hdi api  
duangavin123 已提交
11

D
duangavin123 已提交
12
**Version:**
D
hdi api  
duangavin123 已提交
13

D
duangavin123 已提交
14
1.0
D
hdi api  
duangavin123 已提交
15

Z
z00524957 已提交
16
**相关模块:**
D
hdi api  
duangavin123 已提交
17

D
duangavin123 已提交
18
[HdfPinAuth](_hdf_pin_auth.md)
D
hdi api  
duangavin123 已提交
19 20


Z
z00524957 已提交
21
## 汇总
D
hdi api  
duangavin123 已提交
22 23


D
duangavin123 已提交
24
### Public 成员函数
D
hdi api  
duangavin123 已提交
25

D
duangavin123 已提交
26 27
  | 名称 | 描述 | 
| -------- | -------- |
Z
z00524957 已提交
28 29
| [GetExecutorInfo](#getexecutorinfo) ([out] struct [ExecutorInfo](_executor_info_pinauth.md) executorInfo) | 获取执行器信息,口令认证服务将执行器注册到用户认证框架时需要通过该接口获取对应信息。 | 
| [GetTemplateInfo](#gettemplateinfo) ([in] unsigned long templateId, [out] struct [TemplateInfo](_template_info_pinauth.md) templateInfo) | 获取凭据模版信息。 | 
D
duangavin123 已提交
30
| [OnRegisterFinish](#onregisterfinish) ([in] unsigned long[] templateIdList, [in] unsigned char[] frameworkPublicKey, [in] unsigned char[] extraInfo) | 完成执行器注册,对口令模版信息进行对账,用于删除无效的口令模板及相关信息。 | 
Z
z00524957 已提交
31 32 33
| [OnSetData](#onsetdata) ([in] unsigned long scheduleId, [in] unsigned long authSubType, [in] unsigned char[] data) | 设置口令数据,口令认证驱动处理注册或认证口令请求时,如果口令数据由口令认证服务获取,需要通过该接口将口令数据传给口令认证驱动。 | 
| [Enroll](#enroll) ([in] unsigned long scheduleId, [in] unsigned char[] extraInfo, [in] [IExecutorCallback](interface_i_executor_callback_pinauth.md) callbackObj) | 注册口令。 | 
| [Authenticate](#authenticate) ([in] unsigned long scheduleId, [in] unsigned long templateId, [in] unsigned char[] extraInfo, [in] [IExecutorCallback](interface_i_executor_callback_pinauth.md) callbackObj) | 认证口令。 | 
D
duangavin123 已提交
34
| [Delete](#delete) ([in] unsigned long templateId) | 删除口令。 | 
Z
z00524957 已提交
35 36
| [Cancel](#cancel) ([in] unsigned long scheduleId) | 取消操作请求。 | 
| [SendCommand](#sendcommand) ([in] int commandId, [in] unsigned char[] extraInfo, [in] [IExecutorCallback](interface_i_executor_callback_pinauth.md) callbackObj) | 发送口令认证功能相关操作命令。 | 
D
hdi api  
duangavin123 已提交
37 38


Z
z00524957 已提交
39
## 成员函数说明
D
hdi api  
duangavin123 已提交
40 41 42 43 44 45 46 47 48


### Authenticate()

  
```
IExecutor::Authenticate ([in] unsigned long scheduleId, [in] unsigned long templateId, [in] unsigned char[] extraInfo, [in] IExecutorCallback callbackObj )
```

Z
z00524957 已提交
49
**描述:**
D
hdi api  
duangavin123 已提交
50 51 52

认证口令。

Z
z00524957 已提交
53
**参数:**
D
hdi api  
duangavin123 已提交
54 55 56 57 58 59

  | 名称 | 描述 | 
| -------- | -------- |
| scheduleId | 调度ID,用于标识一次操作请求的调度过程。 | 
| templateId | 指定要认证的模版ID。 | 
| extraInfo | 其他相关信息,用于支持信息扩展。 | 
Z
z00524957 已提交
60
| callbackObj | 回调对象[IExecutorCallback](interface_i_executor_callback_pinauth.md)。 | 
D
hdi api  
duangavin123 已提交
61

Z
z00524957 已提交
62
**返回:**
D
hdi api  
duangavin123 已提交
63 64 65 66 67 68 69 70 71 72 73 74 75

0 表示操作成功。

非0 表示操作失败。


### Cancel()

  
```
IExecutor::Cancel ([in] unsigned long scheduleId)
```

Z
z00524957 已提交
76
**描述:**
D
hdi api  
duangavin123 已提交
77 78 79

取消操作请求。

Z
z00524957 已提交
80
**参数:**
D
hdi api  
duangavin123 已提交
81 82 83 84 85

  | 名称 | 描述 | 
| -------- | -------- |
| scheduleId | 调度ID,用于标识一次操作请求的调度过程。 | 

Z
z00524957 已提交
86
**返回:**
D
hdi api  
duangavin123 已提交
87 88 89 90 91 92 93 94 95 96 97 98 99

0 表示操作成功。

非0 表示操作失败。


### Delete()

  
```
IExecutor::Delete ([in] unsigned long templateId)
```

Z
z00524957 已提交
100
**描述:**
D
hdi api  
duangavin123 已提交
101 102 103

删除口令。

Z
z00524957 已提交
104
**参数:**
D
hdi api  
duangavin123 已提交
105 106 107 108 109

  | 名称 | 描述 | 
| -------- | -------- |
| templateId | 模版ID。 | 

Z
z00524957 已提交
110
**返回:**
D
hdi api  
duangavin123 已提交
111 112 113 114 115 116 117 118 119 120 121 122 123

0 表示操作成功。

非0 表示操作失败。


### Enroll()

  
```
IExecutor::Enroll ([in] unsigned long scheduleId, [in] unsigned char[] extraInfo, [in] IExecutorCallback callbackObj )
```

Z
z00524957 已提交
124
**描述:**
D
hdi api  
duangavin123 已提交
125 126 127

注册口令。

Z
z00524957 已提交
128
**参数:**
D
hdi api  
duangavin123 已提交
129 130 131 132 133

  | 名称 | 描述 | 
| -------- | -------- |
| scheduleId | 调度ID,用于标识一次操作请求的调度过程。 | 
| extraInfo | 其他相关信息,用于支持信息扩展。 | 
Z
z00524957 已提交
134
| callbackObj | 回调对象[IExecutorCallback](interface_i_executor_callback_pinauth.md)。 | 
D
hdi api  
duangavin123 已提交
135

Z
z00524957 已提交
136
**返回:**
D
hdi api  
duangavin123 已提交
137 138 139 140 141 142 143 144 145 146 147 148 149

0 表示操作成功。

非0 表示操作失败。


### GetExecutorInfo()

  
```
IExecutor::GetExecutorInfo ([out] struct ExecutorInfo executorInfo)
```

Z
z00524957 已提交
150
**描述:**
D
hdi api  
duangavin123 已提交
151 152 153

获取执行器信息,口令认证服务将执行器注册到用户认证框架时需要通过该接口获取对应信息。

Z
z00524957 已提交
154
**参数:**
D
hdi api  
duangavin123 已提交
155 156 157

  | 名称 | 描述 | 
| -------- | -------- |
Z
z00524957 已提交
158
| executorInfo | 执行器信息[ExecutorInfo](_executor_info_pinauth.md)。 | 
D
hdi api  
duangavin123 已提交
159

Z
z00524957 已提交
160
**返回:**
D
hdi api  
duangavin123 已提交
161 162 163 164 165 166 167 168 169 170 171 172 173

0 表示操作成功。

非0 表示操作失败。


### GetTemplateInfo()

  
```
IExecutor::GetTemplateInfo ([in] unsigned long templateId, [out] struct TemplateInfo templateInfo )
```

Z
z00524957 已提交
174
**描述:**
D
hdi api  
duangavin123 已提交
175 176 177

获取凭据模版信息。

Z
z00524957 已提交
178
**参数:**
D
hdi api  
duangavin123 已提交
179 180 181 182

  | 名称 | 描述 | 
| -------- | -------- |
| templateId | 凭据模版ID。 | 
Z
z00524957 已提交
183
| templateInfo | 凭据模版信息[TemplateInfo](_template_info_pinauth.md)。 | 
D
hdi api  
duangavin123 已提交
184

Z
z00524957 已提交
185
**返回:**
D
hdi api  
duangavin123 已提交
186 187 188 189 190 191 192 193 194 195 196 197 198

0 表示操作成功。

非0 表示操作失败。


### OnRegisterFinish()

  
```
IExecutor::OnRegisterFinish ([in] unsigned long[] templateIdList, [in] unsigned char[] frameworkPublicKey, [in] unsigned char[] extraInfo )
```

Z
z00524957 已提交
199
**描述:**
D
hdi api  
duangavin123 已提交
200 201 202

完成执行器注册,对口令模版信息进行对账,用于删除无效的口令模板及相关信息。

Z
z00524957 已提交
203
**参数:**
D
hdi api  
duangavin123 已提交
204 205 206 207 208 209 210

  | 名称 | 描述 | 
| -------- | -------- |
| templateIdList | 用户认证框架内由该执行器注册的口令凭据模版ID列表。 | 
| frameworkPublicKey | 用户认证框架的公钥,用于校验用户认证框架私钥签名的信息。 | 
| extraInfo | 其他相关信息,用于支持信息扩展。 | 

Z
z00524957 已提交
211
**返回:**
D
hdi api  
duangavin123 已提交
212 213 214 215 216 217 218 219 220 221 222 223 224

0 表示操作成功。

非0 表示操作失败。


### OnSetData()

  
```
IExecutor::OnSetData ([in] unsigned long scheduleId, [in] unsigned long authSubType, [in] unsigned char[] data )
```

Z
z00524957 已提交
225
**描述:**
D
hdi api  
duangavin123 已提交
226 227 228

设置口令数据,口令认证驱动处理注册或认证口令请求时,如果口令数据由口令认证服务获取,需要通过该接口将口令数据传给口令认证驱动。

Z
z00524957 已提交
229
**参数:**
D
hdi api  
duangavin123 已提交
230 231 232 233 234 235 236

  | 名称 | 描述 | 
| -------- | -------- |
| scheduleId | 调度ID,用于标识一次操作请求的调度过程。 | 
| authSubType | 口令子类型,如六位数字PIN码等。 | 
| data | 口令数据。 | 

Z
z00524957 已提交
237
**返回:**
D
hdi api  
duangavin123 已提交
238 239 240 241 242 243 244 245 246 247 248 249 250

0 表示操作成功。

非0 表示操作失败。


### SendCommand()

  
```
IExecutor::SendCommand ([in] int commandId, [in] unsigned char[] extraInfo, [in] IExecutorCallback callbackObj )
```

Z
z00524957 已提交
251
**描述:**
D
hdi api  
duangavin123 已提交
252 253 254

发送口令认证功能相关操作命令。

Z
z00524957 已提交
255
**参数:**
D
hdi api  
duangavin123 已提交
256 257 258

  | 名称 | 描述 | 
| -------- | -------- |
Z
z00524957 已提交
259
| commandId | 操作命令ID[CommandId](_hdf_pin_auth.md#commandid)。 | 
D
hdi api  
duangavin123 已提交
260
| extraInfo | 其他相关信息,用于支持信息扩展。 | 
Z
z00524957 已提交
261
| callbackObj | 回调对象[IExecutorCallback](interface_i_executor_callback_pinauth.md)。 | 
D
hdi api  
duangavin123 已提交
262

Z
z00524957 已提交
263
**返回:**
D
hdi api  
duangavin123 已提交
264 265 266 267

0 表示操作成功。

非0 表示操作失败。