12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace FG\ASN1\Universal;
- use FG\ASN1\AbstractString;
- use FG\ASN1\Identifier;
- class UTF8String extends AbstractString
- {
-
- public function __construct($string)
- {
- $this->value = $string;
- $this->allowAll();
- }
- public function getType()
- {
- return Identifier::UTF8_STRING;
- }
- }
|