1
chenhaozhe
2025-06-27 152e0e74fa0ae08256b212ea0c9953c9102795e3
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; }
    }
}