Home
last modified time | relevance | path

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

/plugin/gtime/gtlib/asn1/
H A 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);
H A 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);
H A 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);
H A DASN1OctetString.php69 $this->append($bytes, ASN1DER::encodeType(ASN1_TAG_OCTET_STRING));
70 $this->append($bytes, ASN1DER::encodeLength(count($this->value)));
H A DASN1String.php55 $this->prepend($bytes, ASN1DER::encodeLength(count($bytes)));
56 $this->prepend($bytes, ASN1DER::encodeType($this->getType()));
H A DASN1Boolean.php73 $this->append($bytes, ASN1DER::encodeType(ASN1_TAG_BOOLEAN));
74 $this->append($bytes, ASN1DER::encodeLength(1));
H A DASN1Integer.php96 $this->prepend($bytes, ASN1DER::encodeLength(count($bytes)));
97 $this->prepend($bytes, ASN1DER::encodeType(ASN1_TAG_INTEGER));
H A DASN1BitString.php86 $this->prepend($bytes, ASN1DER::encodeLength(count($bytes)));
87 $this->prepend($bytes, ASN1DER::encodeType(ASN1_TAG_BIT_STRING));
H A DASN1DER.php29 class ASN1DER { class
118 $object = ASN1DER::decodeType($bytes);
119 $length = ASN1DER::decodeLength($bytes);
H A DASN1ObjectId.php130 $this->prepend($bytes, ASN1DER::encodeLength(count($bytes)));
131 $this->prepend($bytes, ASN1DER::encodeType(ASN1_TAG_OBJECT_ID));
H A DASN1Null.php47 $this->append($bytes, ASN1DER::encodeType(ASN1_TAG_NULL));
/plugin/gtime/gtlib/http/
H A DGTHttpClient.php74 $response->decode(ASN1DER::decode($bytes));
113 $response->decode(ASN1DER::decode($bytes));
195 $response->decode(ASN1DER::decode($bytes));
/plugin/gtime/gtlib/asn1/cms/
H A DCMSEncapsulatedContentInfo.php134 $sequence = ASN1DER::decode($this->content);
/plugin/gtime/gtlib/asn1/gt/
H A DGTTimeSignature.php70 $object = ASN1DER::decode($object);
/plugin/gtime/gtlib/tsp/
H A DGTPublicationsFile.php394 $contentInfo->decode(ASN1DER::decode($bytes));
H A DGTTimestamp.php571 $content->decode(ASN1DER::decode($bytes));