Home
last modified time | relevance | path

Searched refs:in (Results 226 – 249 of 249) sorted by path

12345678910

/dokuwiki/vendor/phpseclib/phpseclib/
H A DREADME.md30 * Do not use in production
66 * [Browse the Support Forum](http://www.frostjedi.com/phpbb/viewforum.php?f=46) (no longer in use)
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DBase.php
H A DBlowfish.php28 * (the number of blocks in the plaintext) times.
53 * $in = str_repeat('a', 1024 * 1024); PHP's memory utilization jumps up by ~1MB. After doing
54 * $blocks = str_split($in, 4); it jumps up by an additional ~16MB. After
56 * ~90MB, yielding a 106x increase in memory usage. Consequently, it bcrypt calls a different
70 * supports variable length keys, in bcrypt, the initial "key" is the sha512 hash of the
84 * # blowfish + bcrypt in the same class
343 * The Key Length (in bytes)
344 * {@internal The max value is 256 / 8 = 32, the min value is 128 / 8 = 16. Exists in conjunction with $Nk
346 * derive this from $key_length or vice versa, but that'd mean we'd have to do multiple shift operations, so in lieu
365 throw new \InvalidArgumentException('Block ciphers cannot be ran in strea
752 _encryptBlock($in) global() argument
852 _decryptBlock($in) global() argument
[all...]
H A DDES.php77 * Key Length (in bytes)
153 * with each byte containing all bits in the same state as the
154 * corresponding bit in the index value.
580 throw new BadModeException('Block ciphers cannot be ran in stream mode');
599 // in theory openssl_get_cipher_methods() should catch this but, on GitHub Actions, at least, it does not
637 * @param string $in
640 protected function encryptBlock($in)
642 return $this->processBlock($in, self::ENCRYPT);
651 * @param string $in
654 protected function decryptBlock($in)
646 _encryptBlock($in) global() argument
661 _decryptBlock($in) global() argument
[all...]
H A DRC2.php74 * Key Length (in bytes)
98 * The key length in bits.
100 * {@internal Should be in range [1..1024].}
111 * The key length in bits.
113 * {@internal Should be in range [1..1024].}
131 * Twice the same 256-value sequence to save a modulus in key expansion.
255 throw new BadModeException('Block ciphers cannot be ran in stream mode');
277 // in theory openssl_get_cipher_methods() should catch this but, on GitHub Actions, at least, it does not
295 * @param int $length in bits
323 * has more then 128 bytes in i
441 _encryptBlock($in) global() argument
486 _decryptBlock($in) global() argument
[all...]
H A DRC4.php16 * ARCFOUR or ARC4 because RC4 is how it is referred to in the SSH1 specification.
65 * Key Length (in bytes)
113 // in theory openssl_get_cipher_methods() should catch this but, on GitHub Actions, at least, it does not
197 * @param string $in
199 protected function encryptBlock($in)
207 * @param string $in
209 protected function decryptBlock($in)
263 _encryptBlock($in) global() argument
274 _decryptBlock($in) global() argument
H A DRijndael.php20 * are first defined as valid key / block lengths in
25 * {@internal The variable names are the same as those in
103 * {@internal The max value is 256 / 32 = 8, the min value is 128 / 32 = 4. Exists in conjunction with $block_size
105 * derive this from $block_size or vice versa, but that'd mean we'd have to do multiple shift operations, so in lieu
114 * The Key Length (in bytes)
116 * {@internal The max value is 256 / 8 = 32, the min value is 128 / 8 = 16. Exists in conjunction with $Nk
118 * derive this from $key_length or vice versa, but that'd mean we'd have to do multiple shift operations, so in lieu
169 throw new BadModeException('Block ciphers cannot be ran in stream mode');
187 * This results then in slower encryption.
309 * @param string $in
274 _encryptBlock($in) global() argument
375 _decryptBlock($in) global() argument
[all...]
H A DTwofish.php348 * The Key Length (in bytes)
366 throw new BadModeException('Block ciphers cannot be ran in stream mode');
593 * @param string $in
596 protected function encryptBlock($in)
604 $in = unpack("V4", $in);
605 $R0 = $K[0] ^ $in[1];
606 $R1 = $K[1] ^ $in[2];
607 $R2 = $K[2] ^ $in[3];
608 $R3 = $K[3] ^ $in[
599 _encryptBlock($in) global() argument
655 _decryptBlock($in) global() argument
[all...]
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/File/
H A DASN1.php12 * \phpseclib3\File\ASN1 decodes and encodes DER formatted messages and places them in a semantic context.
257 // Length, as discussed in paragraph 8.1.3 of X.690-0207.pdf#page=13
292 built-in types. It defines an application-independent data type that must be distinguishable from all other
296 alternatives of a CHOICE, or universally tagged set members. Only the class number appears in braces for this
369 // the number of unused bits in the final subsequent octet. The number shall be in the range zero to
462 Per that, we're not going to do any validation. If there are any illegal characters in the string,
470 // The Teletex character set in CCITT's T61, space, and delete
473 // The Videotex character set in CCITT's T.100 and T.101, space, and delete
650 // the main diff between sets and sequences is the encapsulation of the foreach in anothe
1383 convert($in, $from = self TYPE_UTF8_STRING, $to = self TYPE_UTF8_STRING) global() argument
[all...]
/dokuwiki/vendor/simplepie/simplepie/
H A D.php-cs-fixer.dist.php4 ->in('build')
5 ->in('library')
6 ->in('src')
7 ->in('tests')
H A DCHANGELOG.md3 All notable changes to this project will be documented in this file.
14 - New method `SimplePie\SimplePie::set_cache()` for providing a PSR-16 cache implementation by @Art4 in [#742](https://github.com/simplepie/simplepie/pull/742)
15 - New method `SimplePie\SimplePie::set_cache_namefilter()` for customize the cache key in [#762](https://github.com/simplepie/simplepie/pull/762)
16 - New class `SimplePie\Cache\CallableNameFilter` to provide a `callable` to customize the cache key in [#762](https://github.com/simplepie/simplepie/pull/762)
17 - New interface `SimplePie\RegistryAware` to inject the `Registry` instance into classes created by `Registry` by @Art4 in [#760](https://github.com/simplepie/simplepie/pull/760)
18 - update PHP versions in GH Actions workflows by @jrfnl in [#767](https://github.com/simplepie/simplepie/pull/767)
19 - Registry: Allow using class-strings instead of magic strings by @jtojnar and @Art4 in [#766](https://github.com/simplepie/simplepie/pull/766)
23 - Clarify branching strategy by @Art4 in [#751](https://github.com/simplepie/simplepie/pull/751)
24 - Use native array_replace_recursive() by @Alkarex in [#74
[all...]
H A DLICENSE.txt4 Redistribution and use in source and binary forms, with or without modification, are
10 * Redistributions in binary form must reproduce the above copyright notice, this list
11 of conditions and the following disclaimer in the documentation and/or other materials
H A DREADME.markdown4 SimplePie is a very fast and easy-to-use class, written in PHP, that puts the
21 What comes in the package?
41 If you'd like a single monolithic file, see the assets in the
58 If you can't find an answer to your question in the documentation, head on over
80 The main development for the next minor release happens in `master` branch.
/dokuwiki/vendor/simplepie/simplepie/idn/
H A DLICENCE25 strategy to use in any particular case, based on the explanations below.
32 it in new free programs; and that you are informed that you can do
64 consistent with the full freedom of use specified in this license.
70 this license for certain libraries in order to permit linking those
86 libraries. However, the Lesser license provides advantages in certain
97 In other cases, permission to use a particular library in non-free
99 free software. For example, permission to use the GNU C Library in
113 be combined with the library in order to run.
134 included without limitation in the term "modification".)
146 on the Library (independent of the use of the Library in
[all...]
H A DReadMe.txt8 * This file is encoded in UTF-8 *
17 and their encoded form as it will be used in the DNS (Domain Name System).
29 response (when in strict mode) or to only partially converted strings.
53 The class is contained in idna_convert.class.php.
86 // Output, what we got now, if output should be in a format different to UTF-8
110 tables in a serialized format, you can run the file idna_convert.create.npdata.php, which
111 creates the file for you and stores it in the same folder, where it is placed.
/dokuwiki/vendor/simplepie/simplepie/src/
H A DSimplePie.php13 * Redistribution and use in source and binary forms, with or without modification, are
19 * * Redistributions in binary form must reproduce the above copyright notice, this list
20 * of conditions and the following disclaimer in the documentation and/or other materials
345 * Wrong Media RSS Namespace. Caused by a long-standing typo in the spec.
350 * Wrong Media RSS Namespace #2. New namespace introduced in Media RSS 1.5.
533 * @var int Cache duration (in seconds)
540 * @var int Auto-discovery cache duration (in seconds)
685 * Previously, it was possible to pass in the feed URL along with cache
817 * If you have a feed available as a string in PHP, you can tell SimplePie
869 * Enable/disable caching in SimplePi
[all...]
/dokuwiki/vendor/splitbrain/php-archive/
H A DLICENSE5 in the Software without restriction, including without limitation the rights
10 The above copyright notice and this permission notice shall be included in
H A DREADME.md52 // To create a TAR archive directly in memory, create() it, add*()
/dokuwiki/vendor/splitbrain/php-cli/
H A DLICENSE7 in the Software without restriction, including without limitation the rights
12 The above copyright notice and this permission notice shall be included in all
H A DREADME.md73 More examples can be found in the examples directory. Please refer to the [API docs](https://splitbrain.github.io/php-cli/)
96 For more complex coloring you can access the color class through ``$this->colors`` in your script. The ``wrap()`` method
100 its ``format()`` method. Please note that you can not pass colored texts in the second parameters (text length calculation
105 The ``TableFormatter`` class allows you to align texts in multiple columns. It tries to figure out the available
114 Columns width can be given in three forms:
116 - fixed width in characters by providing an integer (eg. ``15``)
138 The resulting object then can be passed as the logger instance. The difference between the two is in adjusted method signatures (with appropriate type hinting) only. Be sure you have the suggested `psr/log` composer package installed when using these classes.
150 * success (this is not defined in PSR-3)
159 Convenience methods for all log levels are available. Placeholder interpolation as described in PSR-3 is available, too.
/dokuwiki/vendor/splitbrain/php-jsstrip/
H A DLICENSE6 Redistribution and use in source and binary forms, with or without
12 2. Redistributions in binary form must reproduce the above copyright notice,
13 this list of conditions and the following disclaimer in the documentation
H A DREADME.md5 It was originally ported to PHP in 2006 as part of the [DokuWiki](http://www.dokuwiki.org) wiki engine. It has received several improvements over the years and is now available as a standalone library.
9 jsstrip is a open-source library to remove whitespace and comments from a javascript file. You might want to do this to optimize size and performance, or to make a file harder to read. It typically makes 30-40% savings in file size.
/dokuwiki/vendor/splitbrain/slika/
H A DLICENSE3 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5 The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
H A DREADME.md99 Options can be passed as associatiave array as the second parameter in `Slika::run`.

12345678910