BlockCipher.php 671 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Base Class for all block ciphers
  4. *
  5. * PHP version 5
  6. *
  7. * @category Crypt
  8. * @package BlockCipher
  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. include PHPAES_ROOT . '/phpseclib/Crypt/Common/SymmetricKey.php';
  17. /**
  18. * Base Class for all block cipher classes
  19. *
  20. * @package BlockCipher
  21. * @author Jim Wigginton <terrafrost@php.net>
  22. */
  23. abstract class BlockCipher extends SymmetricKey
  24. {
  25. }