PrivateKeyUsagePeriod.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. /**
  3. * PrivateKeyUsagePeriod
  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. * PrivateKeyUsagePeriod
  18. *
  19. * @package ASN1
  20. * @author Jim Wigginton <terrafrost@php.net>
  21. * @access public
  22. */
  23. abstract class PrivateKeyUsagePeriod
  24. {
  25. const MAP = [
  26. 'type' => ASN1::TYPE_SEQUENCE,
  27. 'children' => [
  28. 'notBefore' => [
  29. 'constant' => 0,
  30. 'optional' => true,
  31. 'implicit' => true,
  32. 'type' => ASN1::TYPE_GENERALIZED_TIME],
  33. 'notAfter' => [
  34. 'constant' => 1,
  35. 'optional' => true,
  36. 'implicit' => true,
  37. 'type' => ASN1::TYPE_GENERALIZED_TIME]
  38. ]
  39. ];
  40. }