- Added comprehensive AI Assistant system (aiassist/ directory): * Vector search and embedding capabilities * Typebot proxy integration * Elastic search functionality * Message classification and chat history * MCP proxy for external integrations - Implemented Court Status API (GetCourtStatus.php): * Real-time court document status checking * Integration with external court systems * Comprehensive error handling and logging - Enhanced S3 integration: * Improved file backup system with metadata * Batch processing capabilities * Enhanced error logging and recovery * Copy operations with URL fixing - Added Telegram contact creation API - Improved error logging across all modules - Enhanced callback system for AI responses - Extensive backup file storage with timestamps - Updated documentation and README files - File storage improvements: * Thousands of backup files with proper metadata * Fix operations for broken file references * Project-specific backup and recovery systems * Comprehensive file integrity checking Total: 26,461+ files added/modified including AWS SDK, vendor dependencies, and extensive backup system.
112 lines
2.7 KiB
PHP
112 lines
2.7 KiB
PHP
<?php
|
|
/*********************************************************************************
|
|
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
|
* ("License"); You may not use this file except in compliance with the License
|
|
* The Original Code is: vtiger CRM Open Source
|
|
* The Initial Developer of the Original Code is vtiger.
|
|
* Portions created by vtiger are Copyright (C) vtiger.
|
|
* All Rights Reserved.
|
|
*
|
|
********************************************************************************/
|
|
|
|
class Encryption
|
|
{
|
|
function encrypt($message)
|
|
{
|
|
//converting a string to binary
|
|
$enc_message = $this->asc2bin($message);
|
|
$enc_message = $this -> xor_string($enc_message);
|
|
$enc_message = $this -> urlsafe_b64encode($enc_message);
|
|
return $enc_message;
|
|
}
|
|
function asc2bin($inputString, $byteLength=8)
|
|
{
|
|
$binaryOutput = '';
|
|
$strSize = strlen($inputString);
|
|
for($x=0; $x<$strSize; $x++)
|
|
{
|
|
$charBin = decbin(ord($inputString{$x}));
|
|
$charBin = str_pad($charBin, $byteLength, '0', STR_PAD_LEFT);
|
|
$binaryOutput .= $charBin;
|
|
}
|
|
|
|
return $binaryOutput;
|
|
}
|
|
|
|
function bin2asc($binaryInput, $byteLength=8)
|
|
{
|
|
if (strlen($binaryInput) % $byteLength)
|
|
{
|
|
return false;
|
|
}
|
|
// why run strlen() so many times in a loop? Use of constants = speed increase.
|
|
$strSize = strlen($binaryInput);
|
|
$origStr = '';
|
|
// jump between bytes.
|
|
for($x=0; $x<$strSize; $x += $byteLength)
|
|
{
|
|
// extract character's binary code
|
|
$charBinary = substr($binaryInput, $x, $byteLength);
|
|
$origStr .= chr(bindec($charBinary)); // conversion to ASCII.
|
|
}
|
|
return $origStr;
|
|
}
|
|
|
|
function decrypt($message)
|
|
{
|
|
$dec_message = $this -> urlsafe_b64decode($message);
|
|
$dec_message = $this -> xor_string($dec_message);
|
|
$dec_message = $this->bin2asc($dec_message);
|
|
return $dec_message;
|
|
}
|
|
function xor_string($string)
|
|
{
|
|
$buf = '';
|
|
$size = strlen($string);
|
|
for ($i=0; $i<$size; $i++)
|
|
$buf .= chr(ord($string[$i]) ^ 255);
|
|
return $buf;
|
|
}
|
|
function urlsafe_b64encode($string)
|
|
{
|
|
$data = base64_encode($string);
|
|
$data = str_replace(array('+','/','='),array('-','_','.'),$data);
|
|
return $data;
|
|
}
|
|
|
|
function urlsafe_b64decode($string)
|
|
{
|
|
$data = str_replace(array('-','_'),array('+','/'),$string);
|
|
$mod4 = strlen($data) % 4;
|
|
if ($mod4)
|
|
{
|
|
$data .= substr('====', $mod4);
|
|
}
|
|
return base64_decode($data);
|
|
}
|
|
function x_Encrypt($string, $key)
|
|
{
|
|
for($i=0; $i<strlen($string); $i++)
|
|
{
|
|
for($j=0; $j<strlen($key); $j++)
|
|
{
|
|
$string[$i] = $string[$i]^$key[$j];
|
|
}
|
|
}
|
|
return $string;
|
|
}
|
|
|
|
function x_Decrypt($string, $key)
|
|
{
|
|
for($i=0; $i<strlen($string); $i++)
|
|
{
|
|
for($j=0; $j<strlen($key); $j++)
|
|
{
|
|
$string[$i] = $key[$j]^$string[$i];
|
|
}
|
|
}
|
|
return $string;
|
|
}
|
|
}
|
|
|