Subversion Repositories oidplus

Rev

Rev 874 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 874 Rev 1042
Line 3... Line 3...
3
/**
3
/**
4
 * MaskGenAglorithm
4
 * MaskGenAglorithm
5
 *
5
 *
6
 * PHP version 5
6
 * PHP version 5
7
 *
7
 *
8
 * @category  File
-
 
9
 * @package   ASN1
-
 
10
 * @author    Jim Wigginton <terrafrost@php.net>
8
 * @author    Jim Wigginton <terrafrost@php.net>
11
 * @copyright 2016 Jim Wigginton
9
 * @copyright 2016 Jim Wigginton
12
 * @license   http://www.opensource.org/licenses/mit-license.html  MIT License
10
 * @license   http://www.opensource.org/licenses/mit-license.html  MIT License
13
 * @link      http://phpseclib.sourceforge.net
11
 * @link      http://phpseclib.sourceforge.net
14
 */
12
 */
15
 
13
 
16
namespace phpseclib3\File\ASN1\Maps;
14
namespace phpseclib3\File\ASN1\Maps;
17
 
15
 
18
use phpseclib3\File\ASN1;
-
 
19
 
-
 
20
/**
16
/**
21
 * MaskGenAglorithm
17
 * MaskGenAglorithm
22
 *
18
 *
23
 * @package ASN1
-
 
24
 * @author  Jim Wigginton <terrafrost@php.net>
19
 * @author  Jim Wigginton <terrafrost@php.net>
25
 * @access  public
-
 
26
 */
20
 */
27
abstract class MaskGenAlgorithm
21
abstract class MaskGenAlgorithm
28
{
22
{
29
    const MAP = AlgorithmIdentifier::MAP;
23
    const MAP = AlgorithmIdentifier::MAP;
30
}
24
}