Home
last modified time | relevance | path

Searched refs:_encryptBlock (Results 1 – 7 of 7) sorted by path

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DBase.php
H A DBlowfish.php25 * # phpseclib's four different _encryptBlock() implementations
27 * When using Blowfish as an encryption algorithm, _encryptBlock() is called 9 + 512 +
30 * Each of the first 9 calls to _encryptBlock() modify the P-array. Each of the next 512
31 * calls modify the S-boxes. The remaining _encryptBlock() calls operate on the plaintext to
33 * _encryptBlock() calls are highly optimized through the use of eval(). Among other things,
35 * have explained 2 of the 4 different _encryptBlock() implementations.
37 * With bcrypt things are a bit different. _encryptBlock() is called 1,079,296 times,
39 * _encryptBlock() isn't as beneficial because the P-array values are not constant. Well, they
40 * are constant, but only for, at most, 777 _encryptBlock() calls, which is equivalent to ~6KB
41 * of data. The average length of back to back _encryptBlock() call
752 function _encryptBlock($in) global() function in phpseclib\\Crypt\\Blowfish
[all...]
H A DDES.php646 function _encryptBlock($in) global() function in phpseclib\\Crypt\\DES
H A DRC2.php441 function _encryptBlock($in) global() function in phpseclib\\Crypt\\RC2
H A DRC4.php263 function _encryptBlock($in) global() function in phpseclib\\Crypt\\RC4
H A DRijndael.php274 function _encryptBlock($in) global() function in phpseclib\\Crypt\\Rijndael
H A DTwofish.php599 function _encryptBlock($in) global() function in phpseclib\\Crypt\\Twofish