1# AuthResultInfo
2
3
4## 概述
5
6用户身份认证结果信息。
7
8**起始版本:** 4.1
9
10**相关模块:**[HdfUserAuth](_hdf_user_auth_v12.md)
11
12
13## 汇总
14
15
16### Public 属性
17
18| 名称 | 描述 |
19| -------- | -------- |
20| int [result](#result) | 用户身份认证结果。  |
21| int [lockoutDuration](#lockoutduration) | 认证执行器的剩余锁定时间。  |
22| int [remainAttempts](#remainattempts) | 认证执行器的剩余可重试次数。  |
23| struct [ExecutorSendMsg](_executor_send_msg_v12.md)[] [msgs](#msgs) | 执行器发送的消息。  |
24| unsigned char[] [token](#token) | 用户身份认证令牌。  |
25| unsigned char[] [rootSecret](#rootsecret) | 保护文件加密密钥的密钥。  |
26
27
28## 类成员变量说明
29
30
31### lockoutDuration
32
33```
34int AuthResultInfo::lockoutDuration
35```
36**描述**
37
38认证执行器的剩余锁定时间。
39
40
41### msgs
42
43```
44struct ExecutorSendMsg [] AuthResultInfo::msgs
45```
46**描述**
47
48执行器发送的消息。
49
50
51### remainAttempts
52
53```
54int AuthResultInfo::remainAttempts
55```
56**描述**
57
58认证执行器的剩余可重试次数。
59
60
61### result
62
63```
64int AuthResultInfo::result
65```
66**描述**
67
68用户身份认证结果。
69
70
71### rootSecret
72
73```
74unsigned char [] AuthResultInfo::rootSecret
75```
76**描述**
77
78保护文件加密密钥的密钥。
79
80
81### token
82
83```
84unsigned char [] AuthResultInfo::token
85```
86**描述**
87
88用户身份认证令牌。
89