1# AuthResultInfo
2
3
4## 概述
5
6用户身份认证结果信息。
7
8**起始版本:** 3.2
9
10**相关模块:**[HdfUserAuth](_hdf_user_auth_v10.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_v10.md)[] [msgs](#msgs) | 执行器发送的消息[ExecutorSendMsg](_executor_send_msg_v10.md)。 |
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
42
43### msgs
44
45```
46struct ExecutorSendMsg [] AuthResultInfo::msgs
47```
48
49**描述**
50
51
52执行器发送的消息[ExecutorSendMsg](_executor_send_msg_v10.md)。
53
54
55### remainAttempts
56
57```
58int AuthResultInfo::remainAttempts
59```
60
61**描述**
62
63
64认证方式距离被冻结的可处理认证请求次数。
65
66
67### result
68
69```
70int AuthResultInfo::result
71```
72
73**描述**
74
75
76用户身份认证结果。
77
78
79### rootSecret
80
81```
82unsigned char [] AuthResultInfo::rootSecret
83```
84
85**描述**
86
87
88保护文件加密密钥的密钥。
89
90
91### token
92
93```
94unsigned char [] AuthResultInfo::token
95```
96
97**描述**
98
99
100用户身份认证令牌。
101