PHP code example of taracybersec / php-security
1. Go to this page and download the library: Download taracybersec/php-security library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
taracybersec / php-security example snippets
composer
use TaraCyberSec\PhpSecurity\Crypto;
$data = "Sensitive information";
Crypto::setSecretKey('your_secret_key');
echo Crypto::encryptForCryptoJS($data, Crypto::ALGO_AES_256_CBC);
use TaraCyberSec\PhpSecurity\Sanitize;
$errors = Sanitize::validateUploadedFiles();
if (!empty($errors)) {
http_response_code(422);
header('Content-Type: application/json');
echo json_encode([
'message' => $errors[0],
'errors' => $errors
]);
die;
}