Constants.cs 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. using System.Globalization;
  2. using System.Text;
  3. namespace GCHR.Model
  4. {
  5. internal static class Constants
  6. {
  7. private static readonly byte[] Key = {76, 123, 122, 84, 45, 12, 44, 78, 56, 43, 47, 6,
  8. 2, 13, 23, 23, 45, 255, 65, 20, 33, 5, 235, 66};
  9. private static readonly byte[] Iv = { 56, 254, 98, 123, 66, 4, 90, 34, 111, 34, 78, 33, 222, 80, 74, 35 };
  10. internal static string Encrypt(string toenc)
  11. {
  12. var des = new CTripleDes(Key, Iv);
  13. return des.Encrypt(toenc);
  14. }
  15. internal static string Decrypt(string todec)
  16. {
  17. var des = new CTripleDes(Key, Iv);
  18. return des.Decrypt(todec);
  19. }
  20. public static Encoding CsvEncoding = Encoding.Default;
  21. public static string ConfigDatei = "config\\gchr.xml";
  22. public const string ConfigDateiAlt = "config\\config.xml";
  23. public const string DepartmentFilter = "'01','1'";
  24. public static NumberFormatInfo Zahlenformat = CultureInfo.GetCultureInfo("de-DE").NumberFormat;
  25. public static NumberFormatInfo ZahlenformatImport = CultureInfo.GetCultureInfo("en-US").NumberFormat;
  26. }
  27. }