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
 * RelativeDistinguishedName
4
 * RelativeDistinguishedName
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 22... Line 24...
22
 * but they can be useful at times when either there is no unique attribute in the entry or you
24
 * but they can be useful at times when either there is no unique attribute in the entry or you
23
 * want to ensure that the entry's DN contains some useful identifying information.
25
 * want to ensure that the entry's DN contains some useful identifying information.
24
 *
26
 *
25
 * - https://www.opends.org/wiki/page/DefinitionRelativeDistinguishedName
27
 * - https://www.opends.org/wiki/page/DefinitionRelativeDistinguishedName
26
 *
28
 *
-
 
29
 * @package ASN1
27
 * @author  Jim Wigginton <terrafrost@php.net>
30
 * @author  Jim Wigginton <terrafrost@php.net>
-
 
31
 * @access  public
28
 */
32
 */
29
abstract class RelativeDistinguishedName
33
abstract class RelativeDistinguishedName
30
{
34
{
31
    const MAP = [
35
    const MAP = [
32
        'type' => ASN1::TYPE_SET,
36
        'type' => ASN1::TYPE_SET,