| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
 | | using System; |  |   |  | namespace Top.Api.Security |  | { |  |   |  |     public class SecretData |  |     { |  |         /// <summary> |  |         ///  明文、h_mac数据 |  |         /// </summary> |  |         public string OriginalValue { get; set; } |  |         /// <summary> |  |         ///  原始base64加密之后的密文数据 |  |         /// </summary> |  |         public string OriginalBase64Value { get; set; } |  |         /// <summary> |  |         /// 秘钥版本 |  |         /// </summary> |  |         public Nullable<Int64> SecretVersion { get; set; } |  |         /// <summary> |  |         /// 搜索 |  |         /// </summary> |  |         public bool Search { get; set; } |  |     } |  | } | 
 |