20 lines
428 B
C#
20 lines
428 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
public partial class PostHeader
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// BI头部包含密钥
|
|||
|
|
/// </summary>
|
|||
|
|
static string biAccessKey = "yd9kWI798IWyyq1t";
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// BI加密算法拼接密钥
|
|||
|
|
/// </summary>
|
|||
|
|
static string biSecretKey = "iQLHTbOqeXtZZpxOZve-PDxTK9DkHPSKRbpXb30eS3g=";
|
|||
|
|
}
|
|||
|
|
|