Home
last modified time | relevance | path

Searched refs:AES (Results 1 – 5 of 5) sorted by path

/dokuwiki/inc/
H A Dauth.php21 use phpseclib3\Crypt\AES;
427 * Encrypt data using the given secret using AES
440 $cipher = new AES('cbc');
454 * Decrypt the given AES ciphertext
465 $cipher = new AES('cbc');
/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/Crypt/
H A DAES.php4 * Pure-PHP implementation of AES.
10 * NOTE: Since AES.php is (for compatibility and phpseclib-historical reasons) virtually
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).
28 * $aes = new \phpseclib3\Crypt\AES('ctr');
51 * Pure-PHP implementation of AES.
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.
68 throw new \BadMethodCallException('The block length cannot be set for AES
59 class AES extends Rijndael global() class
[all...]
H A DRSA.php
H A DRandom.php144 case class_exists('\phpseclib3\Crypt\AES'):
145 $crypto = new AES('ctr');