for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* AesCtr.php
*
* PHP version 5
* @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-CTR encryption functions powered by OpenSSL.
* @link https://apigen.ci/github/mmeyer2k/dcrypt/namespace-Dcrypt.html
class AesCtr extends Aes
{
* AES-256 cipher identifier that will be passed to openssl
* @var string
const CIPHER = 'aes-256-ctr';
}