Lines Matching refs:bytes
86 $bytes = array();
93 $this->append($bytes, ($b1 * 40 + $b2));
121 $this->append($bytes, (int) $integer->bitAnd($mask2)->getValue());
124 … $this->append($bytes, (int) $integer->shiftRight($i)->bitAnd($mask2)->bitOr($mask1)->getValue());
130 $this->prepend($bytes, ASN1DER::encodeLength(count($bytes)));
131 $this->prepend($bytes, ASN1DER::encodeType(ASN1_TAG_OBJECT_ID));
133 return $bytes;
143 public function decodeDER($bytes) { argument
149 for ($i = 0; $i < count($bytes); $i++) {
155 $byte = $bytes[$i];
193 if ($i != count($bytes) - 1) {