AesEncryption.cs 374 B

1234567891011121314151617181920
  1. using System;
  2. using System.IO;
  3. using System.Security.Cryptography;
  4. using System.Text;
  5. namespace GFGGame
  6. {
  7. public static class AesEncryption
  8. {
  9. public static string Encrypt(string plainText)
  10. {
  11. return plainText;
  12. }
  13. public static string Decrypt(string cipherText)
  14. {
  15. return cipherText;
  16. }
  17. }
  18. }