19 lines
503 B
C#
19 lines
503 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FFT
|
|
{
|
|
public class keys
|
|
{
|
|
private static readonly byte[] _salt = Encoding.ASCII.GetBytes("9A2F7B462D518EAEF310A387D24F6C51");
|
|
|
|
private static string keyEncripted = "9A2F7B462D518EAEF310A387D24F6C51";
|
|
public static byte[] Salt => _salt;
|
|
|
|
public static string KeyEncripted { get => keyEncripted; set => keyEncripted = value; }
|
|
}
|
|
}
|