Пример #1
0
        public void WriteSerialToEncrypted(string SerialNumber)
        {
            string location = AppGlobal.get_working_directory() + @"\seal.dat";
            string content  = SerialNumber;

            CoreEncryptionHandler.ProcessTextToFile(content, location, "GLSystem", "Encrypt");
        }
Пример #2
0
        public void WriteLicenseToEncrypted(string LicenseID)
        {
            string location = AppGlobal.get_working_directory() + @"\note.dat";
            string content  = GenerateHWID() + "\r\n" + LicenseID;

            CoreEncryptionHandler.ProcessTextToFile(content, location, "GLSystem", "Encrypt");
        }