Home
last modified time | relevance | path

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

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DAES.php11 * just a wrapper to Rijndael.php you may consider using Rijndael.php instead of
19 * Since \phpseclib3\Crypt\AES extends \phpseclib3\Crypt\Rijndael, some functions are available to be called that, in the context of AES, don't
21 * however possible, won't do anything (AES has a fixed block length whereas Rijndael has a variable one).
55 class AES extends Rijndael
60 * Since \phpseclib3\Crypt\AES extends \phpseclib3\Crypt\Rijndael, this function is, technically, available, but it doesn't do anything.
62 * @see \phpseclib3\Crypt\Rijndael::setBlockLength()
76 * @see \phpseclib3\Crypt\Rijndael:setKeyLength()
96 * Rijndael supports five different key lengths, AES only supports three.
98 * @see \phpseclib3\Crypt\Rijndael
[all...]
H A DRijndael.php4 * Pure-PHP implementation of Rijndael.
16 * Not all Rijndael implementations may support 160-bits or 224-bits as the block length / key length. mcrypt, for example,
18 * {@link http://csrc.nist.gov/archive/aes/rijndael/Rijndael-ammended.pdf#page=10 Rijndael-ammended.pdf#page=10} defines the
21 * {@link http://csrc.nist.gov/archive/aes/rijndael/Rijndael-ammended.pdf#page=44 Rijndael-ammended.pdf#page=44}:
33 * $rijndael = new \phpseclib3\Crypt\Rijndael('ctr');
63 * Pure-PHP implementation of Rijndael.
67 class Rijndael extends BlockCipher
73 * \phpseclib3\Crypt\Rijndael determine
64 class Rijndael extends Base global() class
[all...]
/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.php61 use phpseclib3\Crypt\Rijndael;
2122 return new Rijndael('cbc');
2126 return new Rijndael('ctr');
2146 return new Rijndael('gcm');
4902 'aes128-ctr', // RECOMMENDED AES (Rijndael) in SDCTR mode, with 128-bit key
4959 if ($obj instanceof Rijndael) {
57 use phpseclib\Crypt\Rijndael; global() alias