__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php /** * Base Class for all stream ciphers * * PHP version 5 * * @author Jim Wigginton <[email protected]> * @author Hans-Juergen Petrich <[email protected]> * @copyright 2007 Jim Wigginton * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link http://phpseclib.sourceforge.net */ namespace phpseclib3\Crypt\Common; /** * Base Class for all stream cipher classes * * @author Jim Wigginton <[email protected]> */ abstract class StreamCipher extends SymmetricKey { /** * Block Length of the cipher * * Stream ciphers do not have a block size * * @see \phpseclib3\Crypt\Common\SymmetricKey::block_size * @var int */ protected $block_size = 0; /** * Default Constructor. * * @see \phpseclib3\Crypt\Common\SymmetricKey::__construct() * @return StreamCipher */ public function __construct() { parent::__construct('stream'); } /** * Stream ciphers not use an IV * * @return bool */ public function usesIV() { return false; } }
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Formats | Folder | 0775 |
|
|
| Traits | Folder | 0775 |
|
|
| AsymmetricKey.php | File | 14.8 KB | 0664 |
|
| BlockCipher.php | File | 534 B | 0664 |
|
| PrivateKey.php | File | 696 B | 0664 |
|
| PublicKey.php | File | 590 B | 0664 |
|
| StreamCipher.php | File | 1.1 KB | 0664 |
|
| SymmetricKey.php | File | 125.98 KB | 0664 |
|