Home
last modified time | relevance | path

Searched refs:r (Results 301 – 309 of 309) sorted by path

1...<<111213

/dokuwiki/vendor/marcusschwarz/lesserphp/
H A DREADME.md
H A Dlessc.inc.php
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DBlowfish.php458 list($l, $r) = array_values(unpack('N*', $data = $this->encryptBlock($data)));
460 $this->bctx['p'][$i + 1] = $r;
464 list($l, $r) = array_values(unpack('N*', $data = $this->encryptBlock($data)));
466 $this->bctx['sb'][$i][$j + 1] = $r;
721 $r = $in[2];
723 list($r, $l) = PHP_INT_SIZE == 4 ?
724 self::encryptBlockHelperSlow($l, $r, $sb_0, $sb_1, $sb_2, $sb_3, $p) :
725 self::encryptBlockHelperFast($l, $r, $sb_0, $sb_1, $sb_2, $sb_3, $p);
727 return pack("N*", $r, $l);
819 $r
[all...]
H A DDES.php696 list($l, $r) = [$t['l'], $t['r']];
697 $block = ($shuffleip[ $r & 0xFF] & "\x80\x80\x80\x80\x80\x80\x80\x80") |
698 ($shuffleip[($r >> 8) & 0xFF] & "\x40\x40\x40\x40\x40\x40\x40\x40") |
699 ($shuffleip[($r >> 16) & 0xFF] & "\x20\x20\x20\x20\x20\x20\x20\x20") |
700 ($shuffleip[($r >> 24) & 0xFF] & "\x10\x10\x10\x10\x10\x10\x10\x10") |
708 list($l, $r) = [$t['l'], $t['r']];
716 $b1 = (($r >> 3) & 0x1FFFFFFF) ^ ($r << 2
[all...]
H A DRSA.php2401 _blind($x, $r, $i) global() argument
H A DRandom.php184 $r = $crypto->encrypt($i ^ $v); // strlen($v) == 20
185 $v = $crypto->encrypt($r ^ $i); // strlen($r) == 20
186 $result .= $r;
H A DRijndael.php618 foreach ($this->w as $r => $wr) {
621 $dw[] = $this->dw[$r][$c];
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php296 * echo "\r\n";
306 list($q, $r) = $this->value->divide($y->value);
309 new static($r)
851 * ie. $s = gmp_scan1($n, 0) and $r = gmp_div_q($n, gmp_pow(gmp_init('2'), $s));
853 * @param BigInteger $r
856 public static function scan1divide(BigInteger $r)
859 return $class::scan1divide($r->value);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php1364 fputs($this->fsock, $this->identifier . "\r\n");
1410 //if (substr($line, -2) == "\r\n") {
1429 $this->append_log('->', $this->identifier . "\r\n");
1432 $this->server_identifier = trim($temp, "\r\n");
1455 fputs($this->fsock, $this->identifier . "\r\n");
3823 $this->errors[] = 'SSH_MSG_DISCONNECT: ' . self::$disconnect_reasons[$reason_code] . "\r\n$message";
4141 $this->errors[count($this->errors) - 1] .= "\r\n$error_message";
4467 echo PHP_SAPI == 'cli' ? "\r\n" : '<br>';
4487 $start = $stop = "\r\n";
4513 $temp = "<<< START >>>\r\
[all...]

1...<<111213