[ Index ]

PHP Cross Reference of Joomla 4.2.2 documentation

title

Body

[close]

/libraries/vendor/fgrosse/phpasn1/lib/ASN1/Universal/ -> GeneralString.php (source)

   1  <?php
   2  /*
   3   * This file is part of the PHPASN1 library.
   4   *
   5   * Copyright © Friedrich Große <[email protected]>
   6   *
   7   * For the full copyright and license information, please view the LICENSE
   8   * file that was distributed with this source code.
   9   */
  10  
  11  namespace FG\ASN1\Universal;
  12  
  13  use FG\ASN1\AbstractString;
  14  use FG\ASN1\Identifier;
  15  
  16  class GeneralString extends AbstractString
  17  {
  18      /**
  19       * Creates a new ASN.1 GeneralString.
  20       * TODO The encodable characters of this type are not yet checked.
  21       *
  22       * @param string $string
  23       */
  24      public function __construct($string)
  25      {
  26          $this->value = $string;
  27          $this->allowAll();
  28      }
  29  
  30      public function getType()
  31      {
  32          return Identifier::GENERAL_STRING;
  33      }
  34  }


Generated: Wed Sep 7 05:41:13 2022 Chilli.vc Blog - For Webmaster,Blog-Writer,System Admin and Domainer