for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* AesCbc.php
*
* PHP version 7
* @category Dcrypt
* @package Dcrypt
* @author Michael Meyer (mmeyer2k) <[email protected]>
* @license http://opensource.org/licenses/MIT The MIT License (MIT)
* @link https://github.com/mmeyer2k/dcrypt
*/
namespace Dcrypt;
* Symmetric AES-256-CBC encryption functions powered by OpenSSL.
* @link https://apigen.ci/github/mmeyer2k/dcrypt/namespace-Dcrypt.html
class AesCbc extends OpensslBridge
{
* AES-256 cipher identifier that will be passed to openssl
* @var string
const CIPHER = 'aes-256-cbc';
* Specify sha256 for message authentication
const CHKSUM = 'sha256';
}