[유니티 스크립트 소스] Cryptor
2022. 6. 16.
using UnityEngine; using System; using System.Security.Cryptography; using System.Text; using System.IO; public class CryptorDemo : MonoBehaviour { private static string m_Error = "Error"; private string m_SymmetricKey = "220615!@"; // 대칭키 8자리 void Start() { string sourceMd5 = "Source MD5"; string sourceMd5Hash = EncryptMd5(sourceMd5, Encoding.ASCII); if (sourceMd5Hash != m_Error) Debug.LogForma..