StreamCipher.php 608 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * Base Class for all stream ciphers
  4. *
  5. * PHP version 5
  6. *
  7. * @category Crypt
  8. * @package StreamCipher
  9. * @author Jim Wigginton <terrafrost@php.net>
  10. * @author Hans-Juergen Petrich <petrich@tronic-media.com>
  11. * @copyright 2007 Jim Wigginton
  12. * @license http://www.opensource.org/licenses/mit-license.html MIT License
  13. * @link http://phpseclib.sourceforge.net
  14. */
  15. namespace phpseclib\Crypt\Common;
  16. /**
  17. * Base Class for all stream cipher classes
  18. *
  19. * @package StreamCipher
  20. * @author Jim Wigginton <terrafrost@php.net>
  21. */
  22. abstract class StreamCipher extends SymmetricKey
  23. {
  24. }