humanemulator.net — справка. Продукт, демо и покупка — на хуманэмулятор.рф | Демо | Купить | API | Changelog

uncrypt_file

uncrypt_file($inpath,$outpath,$key); - Дешифровать текст файла

Функция на вход принимает параметры:

  • $inpath – путь к входному файлу для дешифрования
  • $outpath – путь к выходному файлу
  • $key – строка-ключ для дешифрования

    После выполнения функции возвращаемое значение будет равно одному из двух :
  • true – успешно
  • false – не удалось

    Пример использования
    <?php
    // Scenario: Demonstrates file decryption using a password
    
    $xhe_host = getenv("RPABOT_HOST_URL");
    // Connect functional objects if not already connected
    if (!isset($path)){
      $path = "../../../Templates/init.php";
      require($path);
    }
    
    // Example 1: Encrypt a file (preparation for decryption)
    echo "\n\n1. Encrypt file: ";
    $sourceFile = "test/test.txt";
    $targetFile = "test/test.crypted";
    $password = "q12345!";
    $result = SYSTEM::$cryptography->crypt_file($sourceFile, $targetFile, $password);
    if ($result) {
        echo "File encrypted successfully\n";
    } else {
        echo "Failed to encrypt file\n";
    }
    
    // Example 2: Decrypt the file
    echo "\n2. Decrypt file: ";
    $sourceFile = "test/test.crypted";
    $targetFile = "test/test_uncrypted.txt";
    $password = "q12345!";
    $result = SYSTEM::$cryptography->uncrypt_file($sourceFile, $targetFile, $password);
    if ($result) {
        echo "File decrypted successfully\n";
    } else {
        echo "Failed to decrypt file\n";
    }
    
    // Example 3: Read the decrypted file content
    echo "\n3. Read decrypted file content: ";
    $filePath = "test/test_uncrypted.txt";
    $content = SYSTEM::$textfile->read_file($filePath);
    echo $content;
    
    // Quit the application
    WINDOW::$app->quit();
    ?>
    # Additional paths
    import sys
    sys.path.insert(0, '../../../Templates PY/')
    
    xhe_host = "127.0.0.1:3035"
    from xweb_human_emulator import *
    
    # начало
    echo("<hr><font color=blue>cryptography.uncrypt_file</font><hr>")
    
    password="q12345!";
    
    # 1 
    echo("1. Закодируем файл: ");
    echo(cryptography.crypt_file("test/test.txt","test/test.crypted",password));
    
    # 2
    echo("\n2. Раскодируем файл : ");
    echo(cryptography.uncrypt_file("test/test.crypted","test/test_uncrypted.txt",password));
    
    # 3
    echo("\n3. Получим содержимое раскодированного файла : ");
    echo(textfile.read_file("test/test_uncrypted.txt"));
    
    # конец
    echo("<hr><br>")
    
    # Quit
    app.quit()
    #region using
    
    using System;
    using System.Diagnostics;
    using System.Collections.Generic;
    using System.Linq;
    using System.IO;
    using System.Text;
    using System.Threading;
    
    using XHE;
    using XHE.XHE_DOM;
    using XHE.XHE_System;
    using XHE.XHE_Window;
    using XHE.XHE_Web;
    
    #endregion
    
     class Program:XHEScript
     {
    	  static void Main(string[] args)
    	  {
    			// init XHE
    			server = Environment.GetEnvironmentVariable("RPABOT_HOST_URL");
    			InitXHE();
    
    			// начало
    			echo("<hr><font color=blue>cryptography.uncrypt_file</font><hr>");
    				
    			var password="q12345!";
    
    			// 1 
    			echo("1. Закодируем файл: ");
    			echo(cryptography.crypt_file("test/test.txt","test/test.crypted",password));
    
    			// 2
    			echo("\n2. Раскодируем файл : ");
    			echo(cryptography.uncrypt_file("test/test.crypted","test/test_uncrypted.txt",password));
    
    			// 3
    			echo("\n3. Получим содержимое раскодированного файла : ");
    			echo(textfile.read_file("test/test_uncrypted.txt"));
    
    			// конец
    			echo("\n\n");
    
    			app.quit();            
    	  }
    }
    xhe_host="127.0.0.1:3035";
    echo=require("../../../Templates JS/init.js");
    
    // начало
    echo("<hr><font color=blue>cryptography.uncrypt_file</font><hr>");
    
    var password="q12345!";
    
    // 1 
    echo("1. Закодируем файл: ");
    echo(cryptography.crypt_file("test/test.txt","test/test.crypted",password));
    
    // 2
    echo("\n2. Раскодируем файл : ");
    echo(cryptography.uncrypt_file("test/test.crypted","test/test_uncrypted.txt",password));
    
    // 3
    echo("\n3. Получим содержимое раскодированного файла : ");
    echo(textfile.read_file("test/test_uncrypted.txt"));
    
    // конец
    echo("\n");
    
    // Quit
    app.quit();

    =============================================
    cryptography    Объекты    DOM  System  Vision  Web  Window        
    =============================================
    если что-то непонятно или необходимо узнать или считаете что надо добавить по работе этой функции, пишите в комментарии или на наш форум
    .