File: McryptTest.php

package info (click to toggle)
phpseclib 1.0.19-3%2Bdeb11u2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 5,144 kB
  • sloc: php: 11,118; sh: 57; xml: 54; makefile: 19
file content (14 lines) | stat: -rw-r--r-- 339 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
/**
 * @author    Andreas Fischer <bantu@phpbb.com>
 * @copyright 2013 Andreas Fischer
 * @license   http://www.opensource.org/licenses/mit-license.html  MIT License
 */

class Unit_Crypt_AES_McryptTest extends Unit_Crypt_AES_TestCase
{
    protected function setUp(): void
    {
        $this->engine = CRYPT_ENGINE_MCRYPT;
    }
}