Subversion Repositories oidplus

Rev

Rev 846 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

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