Home
last modified time | relevance | path

Searched refs:mode (Results 51 – 75 of 76) sorted by last modified time

1234

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DBlowfish.php357 * @param string $mode
358 * @throws \InvalidArgumentException if an invalid / unsupported mode is provided
360 public function __construct($mode)
362 parent::__construct($mode);
364 if ($this->mode == self::MODE_STREAM) {
365 throw new \InvalidArgumentException('Block ciphers cannot be ran in stream mode');
400 __construct($mode = self MODE_CBC) global() argument
H A DRC2.php247 * @param string $mode
248 * @throws \InvalidArgumentException if an invalid / unsupported mode is provided
250 public function __construct($mode)
252 parent::__construct($mode);
254 if ($this->mode == self::MODE_STREAM) {
255 throw new BadModeException('Block ciphers cannot be ran in stream mode');
H A DRC4.php246 * @param int $mode
249 private function crypt($text, $mode)
255 $stream = &$this->stream[$mode];
316 _crypt($text, $mode) global() argument
H A DTripleDES.php6 * Uses mcrypt, if available, and an internal implementation, otherwise. Operates in the EDE3 mode (encrypt-decrypt-encrypt).
54 * Outer chaining is used by SSH-2 and when the mode is set to \phpseclib3\Crypt\Common\BlockCipher::MODE_CBC.
113 * $mode could be:
131 * @param string $mode
133 public function __construct($mode)
135 switch (strtolower($mode)) {
155 $mode = 'cbc';
159 parent::__construct($mode);
161 if ($this->mode == self::MODE_STREAM) {
162 throw new BadModeException('Block ciphers cannot be ran in stream mode');
154 __construct($mode = self MODE_CBC) global() argument
[all...]
/dokuwiki/inc/
H A DJpegMeta.php1741 * @param string $mode
1745 function _readIFD($data, $base, $offset, $isBigEndian, $mode) {
1746 $EXIFTags = $this->_exifTagNames($mode);
1900 if (($mode == 'ifd0') && ($tag == 0x8769)) { // ExifIFDOffset
1902 } elseif (($mode == 'ifd0') && ($tag == 0x8825)) { // GPSIFDOffset
1904 } elseif (($mode == 'ifd1') && ($tag == 0x0111)) { // TIFFStripOffsets
1906 } elseif (($mode == 'ifd1') && ($tag == 0x0117)) { // TIFFStripByteCounts
1908 } elseif (($mode == 'ifd1') && ($tag == 0x0201)) { // TIFFJFIFOffset
1910 } elseif (($mode == 'ifd1') && ($tag == 0x0202)) { // TIFFJFIFLength
1912 } elseif (($mode
1742 _readIFD($data, $base, $offset, $isBigEndian, $mode) global() argument
2071 _getIFDEntries($isBigEndian, $mode) global() argument
2682 _exifTagNames($mode) global() argument
2832 _exifTagTypes($mode) global() argument
2982 _exifNameTags($mode) global() argument
[all...]
H A Dfarm.php52 $mode = isset($_GET['animal']) ? 'htaccess' : 'cli';
53 $animal = $mode == 'htaccess' ? $_GET['animal'] : $_SERVER['animal'];
68 if (!defined('DOKU_FARM')) define('DOKU_FARM', $mode);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DX509.php429 * @param int $mode
432 public function loadX509($cert, $mode = self::FORMAT_AUTO_DETECT)
451 if ($mode != self::FORMAT_DER) {
453 if ($mode == self::FORMAT_PEM && $cert == $newcert) {
2180 * @param int $mode
2183 public function loadCSR($csr, $mode = self::FORMAT_AUTO_DETECT)
2200 if ($mode != self::FORMAT_DER) {
2202 if ($mode == self::FORMAT_PEM && $csr == $newcsr) {
2400 * @param int $mode
2403 public function loadCRL($crl, $mode
1466 loadX509($cert, $mode = self FORMAT_AUTO_DETECT) global() argument
3208 loadCSR($csr, $mode = self FORMAT_AUTO_DETECT) global() argument
3460 loadCRL($crl, $mode = self FORMAT_AUTO_DETECT) global() argument
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DBigInteger.php1829 _slidingWindow($e, $n, $mode) global() argument
1906 _reduce($x, $n, $mode) global() argument
1943 _prepareReduce($x, $n, $mode) global() argument
1962 _multiplyReduce($x, $y, $n, $mode) global() argument
1981 _squareReduce($x, $n, $mode) global() argument
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSCP.php
H A DSFTP.php1230 case 'mode':
1670 * @param int $mode
1676 public function chmod($mode, $filename, $recursive = false)
1678 if (is_string($mode) && is_int($filename)) {
1679 $temp = $mode;
1680 $mode = $filename;
1684 $attr = pack('N2', NET_SFTP_ATTR_PERMISSIONS, $mode & 07777);
1703 return $attrs['mode'];
1955 * @param int $mode
1959 public function mkdir($dir, $mode
1831 chmod($mode, $filename, $recursive = false) global() argument
2136 mkdir($dir, $mode = 1, $recursive = false) global() argument
2169 _mkdir_helper($dir, $mode) global() argument
2291 put($remote_file, $data, $mode = self SOURCE_STRING, $start = 1, $local_start = 1, $progressCallback = null) global() argument
3515 _parseMode($mode) global() argument
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/
H A DStream.php57 private $mode;
238 * @param string $mode
243 private function _stream_open($path, $mode, $options, &$opened_path)
253 $this->mode = preg_replace('#[bt]$#', '', $mode);
257 if ($this->mode[0] == 'r') {
264 switch ($this->mode[0]) {
273 $this->pos = $this->mode[0] != 'a' ? 0 : $this->size;
286 switch ($this->mode) {
327 switch ($this->mode) {
63 var $mode; global() variable in phpseclib\\Net\\SFTP\\Stream
260 _stream_open($path, $mode, $options, & $opened_path) global() argument
612 _mkdir($path, $mode, $options) global() argument
[all...]
/dokuwiki/inc/Parsing/
H A DParser.php26 /** @var bool mode connections may only be set up once */
40 * Adds the base mode and initialized the lexer
54 * Add a new syntax element (mode) to the parser
83 foreach (array_keys($this->modes) as $mode) {
85 if ($mode == 'base') {
88 $this->modes[$mode]->preConnect();
91 if ($this->modes[$cm]->accepts($mode)) {
92 $this->modes[$mode]->connectTo($cm);
96 $this->modes[$mode]->postConnect();
/dokuwiki/vendor/simplepie/simplepie/idn/
H A DReadMe.txt29 response (when in strict mode) or to only partially converted strings.
/dokuwiki/inc/Parsing/ParserMode/
H A DCamelcaselink.php8 public function connectTo($mode)
12 $mode,
9 connectTo($mode) global() argument
H A DEmaillink.php8 public function connectTo($mode)
11 $this->Lexer->addSpecialPattern('<' . PREG_PATTERN_VALID_EMAIL . '>', $mode, 'emaillink');
9 connectTo($mode) global() argument
H A DFootnote.php26 public function connectTo($mode)
30 $mode,
27 connectTo($mode) global() argument
H A DLinebreak.php8 public function connectTo($mode)
10 $this->Lexer->addSpecialPattern('\x5C{2}(?:[ \t]|(?=\n))', $mode, 'linebreak');
9 connectTo($mode) global() argument
H A DNocache.php8 public function connectTo($mode)
10 $this->Lexer->addSpecialPattern('~~NOCACHE~~', $mode, 'nocache');
9 connectTo($mode) global() argument
H A DPreformatted.php8 public function connectTo($mode)
11 $this->Lexer->addEntryPattern('\n (?![\*\-])', $mode, 'preformatted');
12 $this->Lexer->addEntryPattern('\n\t(?![\*\-])', $mode, 'preformatted');
9 connectTo($mode) global() argument
H A DQuotes.php8 public function connectTo($mode)
18 $mode,
23 $mode,
28 $mode,
35 $mode,
40 $mode,
9 connectTo($mode) global() argument
/dokuwiki/vendor/geshi/geshi/src/
H A Dgeshi.php121 // When strict mode applies for a language
122 /** Strict mode never applies (this is the most common) */
124 /** Strict mode *might* apply, and can be enabled or
127 /** Strict mode always applies */
1389 * for more details on strict mode and where to use it.
1391 * @param boolean $mode Whether to enable strict mode or not
1394 public function enable_strict_mode($mode = true) { argument
1396 $this->strict_mode = ($mode) ? GESHI_ALWAYS : GESHI_NEVER;
2370 // Not strict mode
[all...]
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG500 * Improve the performance of the strict mode tokenizer, making highlighting of languages like
506 * Languages with STRICT_MODE_APPLIES = GESHI_MAYBE default to strict mode now. When no highlightable
507 code is found in this mode, we fallback to the same setting as if GESHI_NEVER was set. That way it
619 - Optimized generation of code parts in strict mode (Milian Wolff)
871 unnecessary </span> when using strict mode) (Daniel Ecer, drskrud),
878 - Removed unnecessary </span> when using strict mode (Tim Van Wassenhove)
929 - set_language resets error status and strict mode (Andrew Black)
934 GESHI_HEADER_DIV mode.
1023 - Method get_stylesheet() modified so that a smaller comment is outputted in economy mode,
1024 and bugs with when line number classes are outputted in economy mode hav
[all...]
/dokuwiki/inc/Cache/
H A DCacheParser.php11 public $mode = ''; // input mode (represents the processing the input file will undergo)
18 * @param string $mode input mode
20 public function __construct($id, $file, $mode)
28 $this->mode = $mode;
31 parent::__construct($file . $INPUT->server->str('HTTP_HOST') . $INPUT->server->str('SERVER_PORT'), '.' . $mode);
12 public $mode = ''; // input mode (represents the processing the input file will undergo) global() variable in dokuwiki\\Cache\\CacheParser
21 __construct($id, $file, $mode) global() argument
H A DCacheRenderer.php74 $files = [DOKU_INC . 'inc/parser/' . $this->mode . '.php'];
/dokuwiki/inc/Extension/
H A DSyntaxPlugin.php25 * Needs to return one of the mode types defined in $PARSER_MODES in Parser.php
34 * Defines the mode types for other dokuwiki markup that maybe nested within the
35 * plugin's own markup. Needs to return an array of one or more of the mode types
108 * @param string $mode
111 public function accepts($mode)
129 return parent::accepts($mode);
112 accepts($mode) global() argument

1234