Home
last modified time | relevance | path

Searched refs:mode (Results 51 – 75 of 76) sorted by path

1234

/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...]
H A DLICENSE313 when it starts in an interactive mode:
/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/marcusschwarz/lesserphp/
H A DLICENSE
H A DREADME.md
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DBase.php
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 DDES.php572 * @param string $mode
573 * @throws BadModeException if an invalid / unsupported mode is provided
575 public function __construct($mode)
577 parent::__construct($mode);
579 if ($this->mode == self::MODE_STREAM) {
580 throw new BadModeException('Block ciphers cannot be ran in stream mode');
662 * $mode should be either self::ENCRYPT or self::DECRYPT. See
669 * @param int $mode
672 private function processBlock($block, $mode)
691 $keys = $this->keys[$mode];
680 _processBlock($block, $mode) global() argument
[all...]
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 DRSA.php40 * One thing to consider when using this: so phpseclib uses PSS mode by default.
146 * Encryption padding mode
153 * Signature padding mode
697 * Used with signature production / verification and (if the encryption mode is self::PADDING_OAEP) encryption and
2050 _getPrivatePublicKey($mode = self PUBLIC_FORMAT_PKCS8) global() argument
3137 setEncryptionMode($mode) global() argument
3150 setSignatureMode($mode) global() argument
H A DRijndael.php161 * @param string $mode
162 * @throws \InvalidArgumentException if an invalid / unsupported mode is provided
164 public function __construct($mode)
166 parent::__construct($mode);
168 if ($this->mode == self::MODE_STREAM) {
169 throw new BadModeException('Block ciphers cannot be ran in stream mode');
275 $this->mode == self::MODE_GCM &&
284 return $this->mode == self::MODE_GCM &&
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...]
H A DTwofish.php358 * @param string $mode
359 * @throws BadModeException if an invalid / unsupported mode is provided
361 public function __construct($mode)
363 parent::__construct($mode);
365 if ($this->mode == self::MODE_STREAM) {
366 throw new BadModeException('Block ciphers cannot be ran in stream mode');
395 __construct($mode = self MODE_CBC) global() argument
/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...]
H A DSSH1.php
H A DSSH2.php3131 * if $mode == self::READ_REGEX, a regular expression.
3142 * @param int $mode One of the self::READ_* constants
3148 public function read($expect = '', $mode = self::READ_SIMPLE, $channel = null)
3169 if ($mode == self::READ_NEXT) {
3175 if ($mode == self::READ_REGEX) {
3779 // don't do this when GCM mode is used since GCM mode doesn't encrypt the length
4902 'aes128-ctr', // RECOMMENDED AES (Rijndael) in SDCTR mode, with 128-bit key
4916 'twofish128-ctr', // OPTIONAL Twofish in SDCTR mode, with 128-bit key
4922 'aes256-cbc', // OPTIONAL AES in CBC mode, wit
3196 read($expect = '', $mode = self READ_SIMPLE) 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/vendor/phpseclib/phpseclib/phpseclib/System/SSH/Agent/
H A DIdentity.php222 * Determines the signature padding mode
146 setSignatureMode($mode) global() argument
/dokuwiki/vendor/simplepie/simplepie/idn/
H A DReadMe.txt29 response (when in strict mode) or to only partially converted strings.
H A Didna_convert.class.php116 * [strict - true: strict mode, good for registration purposes - Causes errors
117 * on failures; false: loose mode, ideal for "wildlife" applications
185 // No no in strict mode
187 $this->_error('Only simple domain name parts can be handled in strict mode');
209 // No no in strict mode
211 $this->_error('Only simple domain name parts can be handled in strict mode');
305 // Neither email addresses nor URLs allowed in strict mode
307 $this->_error('Neither email addresses nor URLs are allowed in strict mode.');
793 $mode = 'next';
801 if ('add' == $mode) {
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/
H A DMisc.php1806 if (isset($attribs['']['mode']) && strtolower(trim($attribs['']['mode'])) === 'base64') {
1807 $mode = \SimplePie\SimplePie::CONSTRUCT_BASE64;
1809 $mode = \SimplePie\SimplePie::CONSTRUCT_NONE;
1815 return \SimplePie\SimplePie::CONSTRUCT_TEXT | $mode;
1819 return \SimplePie\SimplePie::CONSTRUCT_HTML | $mode;
1823 return \SimplePie\SimplePie::CONSTRUCT_XHTML | $mode;
1826 return \SimplePie\SimplePie::CONSTRUCT_NONE | $mode;
1830 return \SimplePie\SimplePie::CONSTRUCT_TEXT | $mode;

1234