Home
last modified time | relevance | path

Searched refs:ord (Results 1 – 25 of 242) sorted by path

12345678910

/plugin/a2s/
H A DASCIIToSVG.php141 return ord($this->yy_buffer[$this->yy_buffer_index++]);
164 return ord($this->yy_buffer[$this->yy_buffer_index++]);
/plugin/adfs/phpsaml/extlib/xmlseclibs/
H A Dxmlseclibs.php221 $byte = ord($key[$i]) & 0xfe;
332 $decrypted_data = substr($decrypted_data, 0, $dataLen - ord($paddingLength));
426 if (ord($string) > 0x7f)
/plugin/aichat/vendor/mehrab-wj/tiktoken-php/data/
H A Dvocab.bpe1030 ord ing
1446 Ġrec ord
2621 ord er
3415 ord s
3587 f ord
4199 ĠL ord
4521 w ord
5114 Ġaff ord
6095 Ġco ord
6107 ord er
[all...]
/plugin/aichat/vendor/mehrab-wj/tiktoken-php/src/
H A DEncoder.php114 $firstCharacterCode = ord($characters[0]);
121 return ($firstCharacterCode - 192) * 64 + (ord($characters[1]) - 128);
125 return ($firstCharacterCode - 224) * 4096 + (ord($characters[1]) - 128) * 64 + (ord($characters[2]) - 128);
129 return ($firstCharacterCode - 240) * 262144 + (ord($characters[1]) - 128) * 4096 + (ord($characters[2]) - 128) * 64 + (ord($characters[3]) - 128);
133 return ($firstCharacterCode - 248) * 16_777_216 + (ord($characters[1]) - 128) * 262144 + (ord($characters[2]) - 128) * 4096 + (ord(
[all...]
/plugin/authdrupal8/
H A Dpassword.inc53 $value = ord($input[$i++]);
56 $value |= ord($input[$i]) << 8;
63 $value |= ord($input[$i]) << 16;
/plugin/authfacebook/lib/
H A Dpolyfills.php43 $result |= (ord($knownString[$i]) ^ ord($userString[$i]));
/plugin/authg2fa/
H A DGoogleAuthenticator.php55 $offset = ord(substr($hm, -1)) & 0x0F;
146 … $binaryString .= ( ($y = chr(base_convert($eightBits[$z], 2, 10))) || ord($y) == 48 ) ? $y:"";
168 $binaryString .= str_pad(base_convert(ord($secret[$i]), 10, 2), 8, '0', STR_PAD_LEFT);
/plugin/authgoogle/google/service/
H A DGoogle_Utils.php58 $ordinalValue = ord($str{$ret});
/plugin/authgoogle2fa/
H A DGoogleAuthenticator.php55 $offset = ord(substr($hm, -1)) & 0x0F;
146 … $binaryString .= ( ($y = chr(base_convert($eightBits[$z], 2, 10))) || ord($y) == 48 ) ? $y:"";
168 $binaryString .= str_pad(base_convert(ord($secret[$i]), 10, 2), 8, '0', STR_PAD_LEFT);
/plugin/authgooglesheets/vendor/firebase/php-jwt/src/
H A DJWT.php460 $status |= (\ord($left[$i]) ^ \ord($right[$i]));
525 if (\ord($r[0]) > 0x7f) {
528 if (\ord($s[0]) > 0x7f) {
603 $constructed = (\ord($der[$pos]) >> 5) & 0x01;
604 $type = \ord($der[$pos++]) & 0x1f;
607 $len = \ord($der[$pos++]);
612 $len = ($len << 8) | \ord($der[$pos++]);
/plugin/authgooglesheets/vendor/paragonie/constant_time_encoding/
H A DREADME.md21 * Uses `pack()` and `unpack()` instead of `chr()` and `ord()`
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Common/Functions/
H A DStrings.php115 $result[] = ord(self::shift($data));
118 $result[] = ord(self::shift($data)) != 0;
354 $b = ord($x[$i]);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/
H A DSymmetricKey.php2612 $length = ord($text[strlen($text) - 1]);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/
H A DPrime.php446 $y = ord(Strings::shift($m));
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A DCommon.php288 $sign = (bool) (ord($y[0]) & 0x80);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRC4.php254 $j = ($j + $keyStream[$i] + ord($key[$i % $keyLength])) & 255;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/
H A DMSBLOB.php111 switch (ord($type)) {
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/
H A DPrivateKey.php343 if (ord($em[0]) != 0 || ord($em[1]) > 2) {
397 $y = ord($em[0]);
H A DPublicKey.php260 if (substr($db, 0, $temp) != str_repeat(chr(0), $temp) || ord($db[$temp]) != 1) {
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/File/
H A DANSI.php238 $chr = ord($source[$i]);
245 case strlen($this->ansi) == 2 && $chr >= 64 && $chr <= 95 && $chr != ord('['):
H A DASN1.php243 $type = ord($encoded[$encoded_pos++]);
256 $temp = ord($encoded[$encoded_pos++]);
275 $length = ord($encoded[$encoded_pos++]);
836 $length = ord(Strings::shift($string));
985 $tag = ord($temp[0]);
1175 if (ord($content[$len - 1]) & 0x80) {
1181 $temp = ord($content[$pos++]);
1190 $first = floor(ord($content[0]) / 40);
1385 $c = ord($in[$i++]);
1388 $c = ($c << 8) | ord($in[$i++]);
[all …]
H A DX509.php3761 $hash[0] = chr((ord($hash[0]) & 0x0F) | 0x40);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DBCMath.php99 0x1000000 * ord($x[$i]) + ((ord($x[$i + 1]) << 16) | (ord(
101 ) << 8) | ord($x[$i + 3])),
H A DEngine.php152 if ($base == -256 && (ord($x[0]) & 0x80)) {
262 if (ord($bytes[0]) & 0x80) {
474 $pre_msb = decbin(ord($temp[0]));
476 $msb = decbin(ord($temp[0]));
519 $temp = ord($x[$i]) << $shift | $carry;
548 $temp = ord($bits[0]);
H A DPHP64.php91 $temp = $i > 0 ? ord($val[$i - 1]) : 0;

12345678910