Home
last modified time | relevance | path

Searched refs:ASN1DER (Results 1 – 16 of 16) sorted by relevance

/plugin/gtime/gtlib/asn1/
DASN1Set.php90 $this->prepend($bytes, ASN1DER::encodeLength(count($bytes)));
91 $this->prepend($bytes, ASN1DER::encodeType(ASN1_TAG_SET));
106 $object = ASN1DER::decodeType($bytes);
107 $length = ASN1DER::decodeLength($bytes);
DASN1Sequence.php91 $this->prepend($bytes, ASN1DER::encodeLength(count($bytes)));
92 $this->prepend($bytes, ASN1DER::encodeType(ASN1_TAG_SEQUENCE));
107 $object = ASN1DER::decodeType($bytes);
108 $length = ASN1DER::decodeLength($bytes);
DASN1Tag.php77 $this->prepend($bytes, ASN1DER::encodeLength(count($bytes)));
119 $object = ASN1DER::decodeType($this->bytes);
120 $length = ASN1DER::decodeLength($this->bytes);
143 $object = ASN1DER::decodeType($tag);
DASN1OctetString.php69 $this->append($bytes, ASN1DER::encodeType(ASN1_TAG_OCTET_STRING));
70 $this->append($bytes, ASN1DER::encodeLength(count($this->value)));
DASN1String.php55 $this->prepend($bytes, ASN1DER::encodeLength(count($bytes)));
56 $this->prepend($bytes, ASN1DER::encodeType($this->getType()));
DASN1Integer.php96 $this->prepend($bytes, ASN1DER::encodeLength(count($bytes)));
97 $this->prepend($bytes, ASN1DER::encodeType(ASN1_TAG_INTEGER));
DASN1Boolean.php73 $this->append($bytes, ASN1DER::encodeType(ASN1_TAG_BOOLEAN));
74 $this->append($bytes, ASN1DER::encodeLength(1));
DASN1DER.php29 class ASN1DER { class
118 $object = ASN1DER::decodeType($bytes);
119 $length = ASN1DER::decodeLength($bytes);
DASN1BitString.php86 $this->prepend($bytes, ASN1DER::encodeLength(count($bytes)));
87 $this->prepend($bytes, ASN1DER::encodeType(ASN1_TAG_BIT_STRING));
DASN1ObjectId.php130 $this->prepend($bytes, ASN1DER::encodeLength(count($bytes)));
131 $this->prepend($bytes, ASN1DER::encodeType(ASN1_TAG_OBJECT_ID));
DASN1Null.php47 $this->append($bytes, ASN1DER::encodeType(ASN1_TAG_NULL));
/plugin/gtime/gtlib/http/
DGTHttpClient.php74 $response->decode(ASN1DER::decode($bytes));
113 $response->decode(ASN1DER::decode($bytes));
195 $response->decode(ASN1DER::decode($bytes));
/plugin/gtime/gtlib/asn1/cms/
DCMSEncapsulatedContentInfo.php134 $sequence = ASN1DER::decode($this->content);
/plugin/gtime/gtlib/asn1/gt/
DGTTimeSignature.php70 $object = ASN1DER::decode($object);
/plugin/gtime/gtlib/tsp/
DGTPublicationsFile.php394 $contentInfo->decode(ASN1DER::decode($bytes));
DGTTimestamp.php571 $content->decode(ASN1DER::decode($bytes));