RickZeeland
Решение 1 будет работать, но дата будет видна любому, поэтому было бы лучше зашифровать ее. Смотрите пример здесь: Шифрование и дешифрование данных с помощью C#[Шифрование и дешифрование данных с помощью C#]
Вот пример использования конфигурационных файлов для хранения ваших данных: Почему, где и как файлы конфигурации .NET[^]
Вот мой пример кода, лучше / быстрее использовать форму шифрования, которая поддерживается аппаратным обеспечением:
// Put these lines in your Form or Program:
string encryptedString = Encrypt.EncryptStringAes(DateTime.Now.ToString(), "My secret code");
Debug.Print(encryptedString);
string decryptedString = Encrypt.DecryptStringAes(encryptedString, "My secret code");
Debug.Print(decryptedString);
// Put this in a Class library file:
namespace Test
{
using System;
using System.IO;
using System.Security.Cryptography;
using System.Text;
/// <summary>
/// Encrypt or decrypt using AES Rijndael encryption.
/// </summary>
public class Encrypt
{
// Change this to your secret key code:
private static byte[] salt = Encoding.ASCII.GetBytes("0123456789");
/// <summary>
/// Encrypt the given string using AES.
/// The string can be decrypted using DecryptStringAES().
/// The sharedSecret parameters must match.
/// </summary>
/// <param name="plainText">The text to encrypt.</param>
/// <param name="sharedSecret">A password used to generate a key for encryption.</param>
/// <returns>The encrypted string.</returns>
public static string EncryptStringAes(string plainText, string sharedSecret)
{
if (string.IsNullOrEmpty(plainText))
{
throw new ArgumentNullException("plainText");
}
if (string.IsNullOrEmpty(sharedSecret))
{
throw new ArgumentNullException("sharedSecret");
}
string outStr; // Encrypted string to return
RijndaelManaged aesAlg = null; // RijndaelManaged object used to encrypt the data.
try
{
// generate the key from the shared secret and the salt
var key = new Rfc2898DeriveBytes(sharedSecret, salt);
// Create a RijndaelManaged object
aesAlg = new RijndaelManaged();
aesAlg.Key = key.GetBytes(aesAlg.KeySize / 8);
// Create a decryptor to perform the stream transform.
var encryptor = aesAlg.CreateEncryptor(aesAlg.Key, aesAlg.IV);
// Create the streams used for encryption.
using (var msEncrypt = new MemoryStream())
{
// prepend the IV
msEncrypt.Write(BitConverter.GetBytes(aesAlg.IV.Length), 0, sizeof(int));
msEncrypt.Write(aesAlg.IV, 0, aesAlg.IV.Length);
using (var csEncrypt = new CryptoStream(msEncrypt, encryptor, CryptoStreamMode.Write))
{
using (var swEncrypt = new StreamWriter(csEncrypt))
{
swEncrypt.Write(plainText);
}
}
outStr = Convert.ToBase64String(msEncrypt.ToArray());
}
}
finally
{
// Clear the RijndaelManaged object.
if (aesAlg != null)
{
aesAlg.Clear();
}
}
// Return the encrypted bytes from the memory stream.
return outStr;
}
/// <summary>
/// Decrypt the given string, assumes the string was encrypted using EncryptStringAes() using an identical sharedSecret.
/// </summary>
/// <param name="cipherText">The text to decrypt.</param>
/// <param name="sharedSecret">A password used to generate a key for decryption.</param>
/// <returns>The decrypted string.</returns>
public static string DecryptStringAes(string cipherText, string sharedSecret)
{
if (string.IsNullOrEmpty(cipherText))
{
throw new ArgumentNullException("cipherText");
}
if (string.IsNullOrEmpty(sharedSecret))
{
throw new ArgumentNullException("sharedSecret");
}
// Declare the RijndaelManaged object used to decrypt the data.
RijndaelManaged aesAlg = null;
// The decrypted text.
string plaintext;
try
{
// generate the key from the shared secret and the salt
var key = new Rfc2898DeriveBytes(sharedSecret, salt);
// Create the streams used for decryption.
byte[] bytes = Convert.FromBase64String(cipherText);
using (var msDecrypt = new MemoryStream(bytes))
{
// Create a RijndaelManaged object with the specified key and IV.
aesAlg = new RijndaelManaged();
aesAlg.Key = key.GetBytes(aesAlg.KeySize / 8);
// Get the initialization vector from the encrypted stream
aesAlg.IV = ReadByteArray(msDecrypt);
// Create a decryptor to perform the stream transform.
var decryptor = aesAlg.CreateDecryptor(aesAlg.Key, aesAlg.IV);
using (var csDecrypt = new CryptoStream(msDecrypt, decryptor, CryptoStreamMode.Read))
{
using (var srDecrypt = new StreamReader(csDecrypt))
{
// Read the decrypted bytes from the decrypting stream and place them in a string.
plaintext = srDecrypt.ReadToEnd();
}
}
}
}
finally
{
// Clear the RijndaelManaged object.
if (aesAlg != null)
{
aesAlg.Clear();
}
}
return plaintext;
}
private static byte[] ReadByteArray(Stream s)
{
byte[] rawLength = new byte[sizeof(int)];
if (s.Read(rawLength, 0, rawLength.Length) != rawLength.Length)
{
throw new SystemException("Stream did not contain properly formatted byte array");
}
byte[] buffer = new byte[BitConverter.ToInt32(rawLength, 0)];
if (s.Read(buffer, 0, buffer.Length) != buffer.Length)
{
throw new SystemException("Did not read byte array properly");
}
return buffer;
}
}
}
RickZeeland
Человеку, который понизил мой ответ: я думаю, что это очень неполитично-понизить голос, не оставив комментария !
MadMyche
Я согласен с тем, что информация будет видна; однако я чувствую, что у того, кто будет реализовывать, будет достаточно интеллекта, чтобы знать это.
Способ, которым мы реализовали его, состоял в том, чтобы умножить число yyyymmdd на определенный коэффициент, а затем закодировать его.
RickZeeland
Вы могли бы ожидать этого, но я боюсь, что есть много абсолютных новичков в CodeProject, которые действительно не имеют ни малейшего понятия !