AdministrationDomainName.php 1022 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. * AdministrationDomainName
  4. *
  5. * PHP version 5
  6. *
  7. * @category File
  8. * @package ASN1
  9. * @author Jim Wigginton <terrafrost@php.net>
  10. * @copyright 2016 Jim Wigginton
  11. * @license http://www.opensource.org/licenses/mit-license.html MIT License
  12. * @link http://phpseclib.sourceforge.net
  13. */
  14. namespace phpseclib\File\ASN1\Maps;
  15. use phpseclib\File\ASN1;
  16. /**
  17. * AdministrationDomainName
  18. *
  19. * @package ASN1
  20. * @author Jim Wigginton <terrafrost@php.net>
  21. * @access public
  22. */
  23. abstract class AdministrationDomainName
  24. {
  25. const MAP = [
  26. 'type' => ASN1::TYPE_CHOICE,
  27. // if class isn't present it's assumed to be \phpseclib\File\ASN1::CLASS_UNIVERSAL or
  28. // (if constant is present) \phpseclib\File\ASN1::CLASS_CONTEXT_SPECIFIC
  29. 'class' => ASN1::CLASS_APPLICATION,
  30. 'cast' => 2,
  31. 'children' => [
  32. 'numeric' => ['type' => ASN1::TYPE_NUMERIC_STRING],
  33. 'printable' => ['type' => ASN1::TYPE_PRINTABLE_STRING]
  34. ]
  35. ];
  36. }