Home
last modified time | relevance | path

Searched refs:Twofish (Results 1 – 4 of 4) sorted by relevance

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DRandom.php147 case class_exists('\phpseclib3\Crypt\Twofish'):
148 $crypto = new Twofish('ctr');
H A DTwofish.php4 * Pure-PHP implementation of Twofish.
12 * - {@link http://en.wikipedia.org/wiki/Twofish Wikipedia description of Twofish}
19 * $twofish = new \phpseclib3\Crypt\Twofish('ctr');
42 * Pure-PHP implementation of Twofish.
47 class Twofish extends BlockCipher
48 class Twofish extends Base global() class
/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.php64 use phpseclib3\Crypt\Twofish;
2135 return new Twofish('cbc');
2139 return new Twofish('ctr');
4916 'twofish128-ctr', // OPTIONAL Twofish in SDCTR mode, with 128-bit key
4917 'twofish192-ctr', // OPTIONAL Twofish with 192-bit key
4918 'twofish256-ctr', // OPTIONAL Twofish with 256-bit key
4924 'twofish128-cbc', // OPTIONAL Twofish with a 128-bit key
4925 'twofish192-cbc', // OPTIONAL Twofish with a 192-bit key
60 use phpseclib\Crypt\Twofish; global() alias