Home
last modified time | relevance | path

Searched refs:Blowfish (Results 1 – 5 of 5) sorted by relevance

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRandom.php150 case class_exists('\phpseclib3\Crypt\Blowfish'):
151 $crypto = new Blowfish('ctr');
H A DBlowfish.php4 * Pure-PHP implementation of Blowfish.
12 * - {@link http://en.wikipedia.org/wiki/Blowfish_(cipher) Wikipedia description of Blowfish}
14 * # An overview of bcrypt vs Blowfish
20 * bcrypt is basically Blowfish but instead of performing the key expansion once it performs
27 * When using Blowfish as an encryption algorithm, _encryptBlock() is called 9 + 512 +
32 * produce the ciphertext. In the pure-PHP implementation of Blowfish these remaining
57 * _encryptBlock() then the regular Blowfish does. That said, the Blowfish _encryptBlock() is
69 * than regular Blowfish, so we can use that to our advantage. In particular, whereas Blowfish
129 class Blowfish extends Base global() class
[all...]
H A DBase.php
/dokuwiki/vendor/phpseclib/phpseclib/
H A DREADME.md15 SSH-2, SFTP, X.509, an arbitrary-precision integer arithmetic library, Ed25519 / Ed449 / Curve25519 / Curve449, ECDSA / ECDH (with support for 66 curves), RSA (PKCS#1 v2.2 compliant), DSA / DH, DES / 3DES / RC4 / Rijndael / AES / Blowfish / Twofish / Salsa20 / ChaCha20, GCM / Poly1305
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php49 use phpseclib3\Crypt\Blowfish;
2128 return new Blowfish('cbc');
2130 return new Blowfish('ctr');
4930 'blowfish-ctr', // OPTIONAL Blowfish in SDCTR mode
4932 'blowfish-cbc', // OPTIONAL Blowfish in CBC mode
53 use phpseclib\Crypt\Blowfish; global() alias