Searched refs:ASN1DER (Results 1 – 16 of 16) sorted by relevance
/plugin/gtime/gtlib/asn1/ |
H A D | ASN1Sequence.php | 91 $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 D | ASN1Set.php | 90 $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 D | ASN1Tag.php | 77 $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 D | ASN1OctetString.php | 69 $this->append($bytes, ASN1DER::encodeType(ASN1_TAG_OCTET_STRING)); 70 $this->append($bytes, ASN1DER::encodeLength(count($this->value)));
|
H A D | ASN1String.php | 55 $this->prepend($bytes, ASN1DER::encodeLength(count($bytes))); 56 $this->prepend($bytes, ASN1DER::encodeType($this->getType()));
|
H A D | ASN1Boolean.php | 73 $this->append($bytes, ASN1DER::encodeType(ASN1_TAG_BOOLEAN)); 74 $this->append($bytes, ASN1DER::encodeLength(1));
|
H A D | ASN1Integer.php | 96 $this->prepend($bytes, ASN1DER::encodeLength(count($bytes))); 97 $this->prepend($bytes, ASN1DER::encodeType(ASN1_TAG_INTEGER));
|
H A D | ASN1BitString.php | 86 $this->prepend($bytes, ASN1DER::encodeLength(count($bytes))); 87 $this->prepend($bytes, ASN1DER::encodeType(ASN1_TAG_BIT_STRING));
|
H A D | ASN1DER.php | 29 class ASN1DER { class 118 $object = ASN1DER::decodeType($bytes); 119 $length = ASN1DER::decodeLength($bytes);
|
H A D | ASN1ObjectId.php | 130 $this->prepend($bytes, ASN1DER::encodeLength(count($bytes))); 131 $this->prepend($bytes, ASN1DER::encodeType(ASN1_TAG_OBJECT_ID));
|
H A D | ASN1Null.php | 47 $this->append($bytes, ASN1DER::encodeType(ASN1_TAG_NULL));
|
/plugin/gtime/gtlib/http/ |
H A D | GTHttpClient.php | 74 $response->decode(ASN1DER::decode($bytes)); 113 $response->decode(ASN1DER::decode($bytes)); 195 $response->decode(ASN1DER::decode($bytes));
|
/plugin/gtime/gtlib/asn1/cms/ |
H A D | CMSEncapsulatedContentInfo.php | 134 $sequence = ASN1DER::decode($this->content);
|
/plugin/gtime/gtlib/asn1/gt/ |
H A D | GTTimeSignature.php | 70 $object = ASN1DER::decode($object);
|
/plugin/gtime/gtlib/tsp/ |
H A D | GTPublicationsFile.php | 394 $contentInfo->decode(ASN1DER::decode($bytes));
|
H A D | GTTimestamp.php | 571 $content->decode(ASN1DER::decode($bytes));
|