ketan Ram Patil Ответов: 2

Как истечь срок действия заявки через 60 дней


привет
друг, я хочу, чтобы срок действия заявки истек через 60 дней. поэтому мне нужна функция, которая принимает дату начала и дату окончания (не имеет значения текущая дата машины пользователя) из базы данных, вычисляет оставшиеся дни и выдает сообщение пользователю, и срок действия приложения истекает .

Заранее спасибо. :)

Что я уже пробовал:

не знаю, что делать...

Заранее спасибо. :)

2 Ответов

Рейтинг:
7

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

Человеку, который понизил мой ответ: я думаю, что это очень неполитично-понизить голос, не оставив комментария !

ketan Ram Patil

у вас есть какой-нибудь пример кода или ссылка? так что я могу все ясно понять

MadMyche

Я согласен с тем, что информация будет видна; однако я чувствую, что у того, кто будет реализовывать, будет достаточно интеллекта, чтобы знать это.
Способ, которым мы реализовали его, состоял в том, чтобы умножить число yyyymmdd на определенный коэффициент, а затем закодировать его.

RickZeeland

Вы могли бы ожидать этого, но я боюсь, что есть много абсолютных новичков в CodeProject, которые действительно не имеют ни малейшего понятия !

Рейтинг:
16

MadMyche

Используйте для этого DAT или аналогичный файл (или вы можете поместить его в БД).
При запуске программы проверьте значение файла DAT или DB.
- Если он пустой, заполните его сегодняшней датой
- Если он не пустой, у вас есть дата для работы.

Это простой процесс. Программное обеспечение бывшей компании использовало вариант, чтобы истечь срок действия программы в установленный срок.


ketan Ram Patil

у вас есть какой-нибудь пример кода?.. :(

MadMyche

Это довольно простое решение; вы должны знать, как открыть и прочитать источник данных (файл.CONFIG, текстовый файл, БД и т. д.) и знать, как выполнять простые функции даты.