public static string Encrypt(string textToEncrypt, string key) { RijndaelManaged rijndaelCipher = new RijndaelManaged(); rijndaelCipher.Mode = CipherMode.CBC; rijndaelCipher.Padding = PaddingMode.PKCS7; rijndaelCipher.KeySize = 128; rijndaelCipher.BlockSize = 128; byte[] pwdBytes = Encoding.UTF8.GetBytes(key); byte[] keyBytes = new byte[16]; int len = pwdBytes.Length; if (len > keyBytes.Length) ..
EncryptString(암호키, 암호화할 문자열); private static string EncryptString(string InputText, string KeyString) { RijndaelManaged RijndaelCipher = new RijndaelManaged(); byte[] PlainText = Encoding.Unicode.GetBytes(InputText); byte[] Salt = Encoding.ASCII.GetBytes(KeyString.Length.ToString()); PasswordDeriveBytes SecureKey = new PasswordDeriveBytes(KeyString, Salt); ICryptoTransform Encryptor = RijndaelCi..
- Total
- Today
- Yesterday
- 인삼키우기
- c# SpeechSynthesizer
- c#
- 앉은뱅이 방울토마토
- 스털링
- imemode
- 베란타
- c# 음성
- 드론
- 스털링엔진
- 이베스트
- C# 마우스 폼이동
- 코딩
- 베란다 방울토마토
- 이 행은
- 복호화
- framework
- C# textbox 커서 마지막
- MySQL
- 베란다 텃밭
- C# textbox 커서 위치
- Xingapi
- 암호화
- ESP32
- 방울토마토
- C# textbox 커서 시작
- ArgumentException
- NET FRAMEWORK
- c# Speech
- 시스템트레이딩
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |