| 1234567891011121314151617181920 |
- using System;
- using System.IO;
- using System.Security.Cryptography;
- using System.Text;
- namespace GFGGame
- {
- public static class AesEncryption
- {
- public static string Encrypt(string plainText)
- {
- return plainText;
- }
- public static string Decrypt(string cipherText)
- {
- return cipherText;
- }
- }
- }
|