1. 참조 및 전역 변수using System.Security.Cryptography;using System.Text;string m_strKey = "Sample Cryptography Key"; 2. 암호화private string EncryptStringAES(string plainText, string keyString){ byte[] szDatas = Encoding.UTF8.GetBytes(keyString); // 키를 바이트 배열로 변환 byte[] key = new byte[32]; Array.Copy(Encoding.UTF8.GetBytes("12345678901234567890123456789012"), key, key.Length); // key 초기화 if ..