AlgorithmIdentifier.php 555 B

12345678910111213141516171819202122
  1. <?php
  2. /*
  3. * This file is part of the PHPASN1 library.
  4. *
  5. * Copyright © Friedrich Große <friedrich.grosse@gmail.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace FG\X509;
  11. use FG\ASN1\Universal\NullObject;
  12. use FG\ASN1\Composite\AttributeTypeAndValue;
  13. class AlgorithmIdentifier extends AttributeTypeAndValue
  14. {
  15. public function __construct($objectIdentifierString)
  16. {
  17. parent::__construct($objectIdentifierString, new NullObject());
  18. }
  19. }