File: /storage/v6964/avoxlive/public_html/application/libraries/ccavenue/Crypto.php
<?php
// *************************************************************************
// * *
// * OPTIMUM LINKUP SCHOOL MANAGEMENT SYSTEM *
// * Copyright (c) OPTIMUM LINKUP. All Rights Reserved *
// * *
// *************************************************************************
// * *
// * Email: optimumproblemsolver@gmail.com *
// * Website: https://optimumlinkup.com.ng *
// * https://optimumlinkupsoftware.com *
// * *
// *************************************************************************
// * *
// * This software is furnished under a license and may be used and copied *
// * only in accordance with the terms of such license and with the *
// * inclusion of the above copyright notice. *
// * *
// *************************************************************************
//LOCATION : application - controller - Ccavenue.php
function encrypt($plainText,$key)
{
$secretKey = hextobin(md5($key));
$initVector = pack("C*", 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f);
$encryptedText = openssl_encrypt($plainText, "AES-128-CBC", $secretKey, OPENSSL_RAW_DATA, $initVector);
$encryptedText = bin2hex($encryptedText);
return $encryptedText;
}
function decrypt($encryptedText,$key)
{
$secretKey = hextobin(md5($key));
$initVector = pack("C*", 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f);
$encryptedText = hextobin($encryptedText);
$decryptedText = openssl_decrypt($encryptedText,"AES-128-CBC", $secretKey, OPENSSL_RAW_DATA, $initVector);
return $decryptedText;
}
?>