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
 * DigestInfo
4
 * DigestInfo
5
 *
5
 *
6
 * PHP version 5
6
 * PHP version 5
7
 *
7
 *
-
 
8
 * @category  File
-
 
9
 * @package   ASN1
8
 * @author    Jim Wigginton <terrafrost@php.net>
10
 * @author    Jim Wigginton <terrafrost@php.net>
9
 * @copyright 2016 Jim Wigginton
11
 * @copyright 2016 Jim Wigginton
10
 * @license   http://www.opensource.org/licenses/mit-license.html  MIT License
12
 * @license   http://www.opensource.org/licenses/mit-license.html  MIT License
11
 * @link      http://phpseclib.sourceforge.net
13
 * @link      http://phpseclib.sourceforge.net
12
 */
14
 */
Line 18... Line 20...
18
/**
20
/**
19
 * DigestInfo
21
 * DigestInfo
20
 *
22
 *
21
 * from https://tools.ietf.org/html/rfc2898#appendix-A.3
23
 * from https://tools.ietf.org/html/rfc2898#appendix-A.3
22
 *
24
 *
-
 
25
 * @package ASN1
23
 * @author  Jim Wigginton <terrafrost@php.net>
26
 * @author  Jim Wigginton <terrafrost@php.net>
-
 
27
 * @access  public
24
 */
28
 */
25
abstract class DigestInfo
29
abstract class DigestInfo
26
{
30
{
27
    const MAP = [
31
    const MAP = [
28
        'type' => ASN1::TYPE_SEQUENCE,
32
        'type' => ASN1::TYPE_SEQUENCE,