terrafrost
|
beb3d0db79
|
Merge remote-tracking branch 'petrich/master' into petrich
Conflicts:
phpseclib/Crypt/AES.php
phpseclib/Crypt/Base.php
phpseclib/Crypt/Blowfish.php
phpseclib/Crypt/DES.php
phpseclib/Crypt/RC2.php
phpseclib/Crypt/RC4.php
phpseclib/Crypt/Rijndael.php
phpseclib/Crypt/TripleDES.php
phpseclib/Crypt/Twofish.php
|
2014-10-11 22:56:32 -05:00 |
|
Andreas Fischer
|
67aedc240b
|
Change constructors from class name to __construct().
This has been produced as follows:
<?php
$replace = $files = [];
$it = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($argv[1]));
foreach ($it as $fileinfo) {
if ($fileinfo->getExtension() === 'php') {
$file = $fileinfo->getPathname();
$content = file_get_contents($file);
$files[$file] = $content;
$tokens = token_get_all($content);
foreach ($tokens as $key => $value) {
if ($value[0] === T_CLASS) {
$class = $tokens[$key + 2][1];
$replace += array(
"$class::$class(" => "$class::__construct(",
"parent::$class(" => "parent::__construct(",
"function $class(" => "function __construct(",
);
}
}
}
}
foreach ($files as $file => $content) {
file_put_contents(
$file,
str_replace(
array_keys($replace),
array_values($replace),
$content
)
);
}
|
2014-06-16 17:06:34 +02:00 |
|
terrafrost
|
04d66db309
|
RC2: speed-ups and CS changes
|
2014-06-13 16:30:12 -05:00 |
|
Andreas Fischer
|
e6f87318f5
|
Adjust documentation to coding guidelines: No () around include.
|
2014-06-01 23:28:49 +02:00 |
|
Andreas Fischer
|
fb1296bbec
|
Drop meaningless, outdated, inconsistent version tags in doc blocks.
find phpseclib -type f -name "*.php" -exec sed -i '/@version/d' {} \;
|
2014-03-11 15:58:33 +01:00 |
|
Veres Lajos
|
930a3fb4d2
|
typofixes - https://github.com/vlajos/misspell_fixer
|
2014-03-05 23:41:20 +00:00 |
|
Andreas Fischer
|
f744fbbcc9
|
Set permissions of phpseclib/Crypt/RC2.php to 644.
|
2014-03-01 00:56:08 +01:00 |
|
Andreas Fischer
|
56f1ada5c1
|
CS: Each file MUST end with exactly one newline character
|
2014-02-10 14:51:35 +01:00 |
|
Hans-Jürgen Petrich
|
50f46959ed
|
Ciphers: Adding setEngine() and some optimizations
Ciphers: Adding setEngine() and some optimizations
|
2014-01-31 06:13:14 +07:00 |
|
Andreas Fischer
|
f0f029b2c1
|
CS: Fix "PEAR.Commenting.ClassComment.WrongTagOrder" sniff.
|
2013-12-11 18:33:18 +01:00 |
|
Andreas Fischer
|
3db1fbb072
|
CS: Fix "PEAR.Commenting.FileComment.TagIndent" sniff.
|
2013-12-10 20:10:37 +01:00 |
|
Andreas Fischer
|
6d1fb9f7db
|
CS: Fix "PEAR.Files.IncludingFile.UseIncludeOnce" sniff.
|
2013-12-06 01:03:34 +01:00 |
|
Andreas Fischer
|
bc6ff96292
|
Fix "PEAR.Files.IncludingFile.BracketsNotRequired" sniff.
|
2013-12-05 23:17:40 +01:00 |
|
Andreas Fischer
|
e09f1b730e
|
CodeSniffer: Fix PEAR.Classes.ClassDeclaration.OpenBraceNewLine sniff.
|
2013-12-03 19:34:41 +01:00 |
|
Marc Philip Scholten
|
3bfd884813
|
Removed vim comments
Reformated files
|
2013-11-23 19:42:26 +01:00 |
|
Patrick Monnerat
|
e644c42efa
|
RC2: Changes according to arguments in https://github.com/phpseclib/phpseclib/pull/124
|
2013-06-28 16:32:06 +02:00 |
|
Hans-Jürgen Petrich
|
b5da66e979
|
RC2: Optimizations, inline-crypt bug fix
|
2013-06-25 13:38:50 +07:00 |
|
Patrick Monnerat
|
b247ad1743
|
Add Crypt RC2 algorithm.
|
2013-06-24 19:17:13 +02:00 |
|