for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Ocsp\Asn1\Element;
use Ocsp\Asn1\Encoder;
use Ocsp\Asn1\TaggableElement;
use Ocsp\Asn1\TaggableElementTrait;
use Ocsp\Asn1\UniversalTagID;
/**
* ASN.1 element: OCTET STRING.
*/
class OctetString implements TaggableElement
{
use TaggableElementTrait;
* The value of the element.
*
* @var string
private $value;
* Create a new instance.
* @param string $value the value of the element
* @return static
public static function create($value)
$result = new static();
return $result->setValue($value);
}
* {@inheritdoc}
* @see \Ocsp\Asn1\Element::getClass()
public function getClass()
return static::CLASS_UNIVERSAL;
* @see \Ocsp\Asn1\Element::getTypeID()
public function getTypeID()
return UniversalTagID::OCTET_STRING;
* @see \Ocsp\Asn1\Element::isConstructed()
public function isConstructed()
return false;
* Get the value of the element.
* @return string
public function getValue()
return $this->value;
* Update the value of the element.
* @param string $value
* @return $this
public function setValue($value)
$this->value = (string) $value;
return $this;
* @see \Ocsp\Asn1\Element::getEncodedValue()
public function getEncodedValue(Encoder $encoder)
return $encoder->encodeOctetString($this->getValue());