mmeyer2k/dcrypt

View on GitHub
src/Aes256Ctr.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Dcrypt;

class Aes256Ctr extends Aes256Gcm
{
    /**
     * AES-256 cipher identifier that will be passed to openssl.
     *
     * @var string
     */
    const CIPHER = 'aes-256-ctr';
}