Home
last modified time | relevance | path

Searched refs:encodeLength (Results 1 – 13 of 13) sorted by relevance

/plugin/authgooglesheets/vendor/firebase/php-jwt/src/
H A DJWK.php134 $modulus = \pack('Ca*a*', 2, self::encodeLength(\strlen($mod)), $mod);
135 $publicExponent = \pack('Ca*a*', 2, self::encodeLength(\strlen($exp)), $exp);
140 self::encodeLength(\strlen($modulus) + \strlen($publicExponent)),
148 $rsaPublicKey = \chr(3) . self::encodeLength(\strlen($rsaPublicKey)) . $rsaPublicKey;
153 self::encodeLength(\strlen($rsaOID . $rsaPublicKey)),
173 private static function encodeLength(int $length): string function in Firebase\\JWT\\JWK
/plugin/gtime/gtlib/asn1/
H A DASN1OctetString.php70 $this->append($bytes, ASN1DER::encodeLength(count($this->value)));
H A DASN1String.php55 $this->prepend($bytes, ASN1DER::encodeLength(count($bytes)));
H A DASN1Boolean.php74 $this->append($bytes, ASN1DER::encodeLength(1));
H A DASN1Integer.php96 $this->prepend($bytes, ASN1DER::encodeLength(count($bytes)));
H A DASN1Sequence.php91 $this->prepend($bytes, ASN1DER::encodeLength(count($bytes)));
H A DASN1Set.php90 $this->prepend($bytes, ASN1DER::encodeLength(count($bytes)));
H A DASN1BitString.php86 $this->prepend($bytes, ASN1DER::encodeLength(count($bytes)));
H A DASN1Tag.php77 $this->prepend($bytes, ASN1DER::encodeLength(count($bytes)));
H A DASN1ObjectId.php130 $this->prepend($bytes, ASN1DER::encodeLength(count($bytes)));
H A DASN1DER.php56 public static function encodeLength($length) { function in ASN1DER
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/File/
H A DASN1.php957 $temp = $subtag . self::encodeLength(strlen($temp)) . $temp;
991 $temp = $subtag . self::encodeLength(strlen($temp)) . $temp;
1145 $value = chr($tag) . self::encodeLength(strlen($value)) . $value;
1152 return chr($tag) . self::encodeLength(strlen($value)) . $value;
1507 public static function encodeLength($length) function in phpseclib3\\File\\ASN1
H A DX509.php3129 $temp = chr(ASN1::TYPE_GENERALIZED_TIME) . ASN1::encodeLength(strlen($temp)) . $temp;