AesCtr
class AesCtr extends Aes
Methods
AES Cipher function: encrypt 'input' with Rijndael algorithm
Key expansion for Rijndael cipher(): performs key expansion on cipher key to generate a key schedule
Encrypt a text using AES encryption in Counter mode of operation - see http://csrc.nist.gov/publications/nistpubs/800-38a/sp800-38a.pdf
No description
Decrypt a text encrypted by AES in counter mode of operation
No description
Details
in Aes at line 21
static array
cipher(input $input, w $w)
AES Cipher function: encrypt 'input' with Rijndael algorithm
in Aes at line 94
static array
keyExpansion(key $key)
Key expansion for Rijndael cipher(): performs key expansion on cipher key to generate a key schedule
at line 34
static string
encrypt(plaintext $plaintext, password $password, nBits $nBits)
Encrypt a text using AES encryption in Counter mode of operation - see http://csrc.nist.gov/publications/nistpubs/800-38a/sp800-38a.pdf
Unicode multi-byte character safe
at line 51
static
legacyEncrypt($plaintext, $password, $nBits)
at line 120
static string
decrypt(ciphertext $ciphertext, password $password, nBits $nBits)
Decrypt a text encrypted by AES in counter mode of operation