Home
last modified time | relevance | path

Searched refs:encodeType (Results 1 – 10 of 10) sorted by relevance

/plugin/gtime/gtlib/asn1/
H A DASN1Null.php47 $this->append($bytes, ASN1DER::encodeType(ASN1_TAG_NULL));
H A DASN1OctetString.php69 $this->append($bytes, ASN1DER::encodeType(ASN1_TAG_OCTET_STRING));
H A DASN1String.php56 $this->prepend($bytes, ASN1DER::encodeType($this->getType()));
H A DASN1Boolean.php73 $this->append($bytes, ASN1DER::encodeType(ASN1_TAG_BOOLEAN));
H A DASN1Integer.php97 $this->prepend($bytes, ASN1DER::encodeType(ASN1_TAG_INTEGER));
H A DASN1Sequence.php92 $this->prepend($bytes, ASN1DER::encodeType(ASN1_TAG_SEQUENCE));
H A DASN1Set.php91 $this->prepend($bytes, ASN1DER::encodeType(ASN1_TAG_SET));
H A DASN1BitString.php87 $this->prepend($bytes, ASN1DER::encodeType(ASN1_TAG_BIT_STRING));
H A DASN1ObjectId.php131 $this->prepend($bytes, ASN1DER::encodeType(ASN1_TAG_OBJECT_ID));
H A DASN1DER.php95 public static function encodeType($type) { function in ASN1DER