cryptal  latest
Cryptography Abstraction Layer
CipherEnum.php
1 <?php
2 
3 namespace fpoirotte\Cryptal;
4 
6 
11 {
13  private $CIPHER_3DES;
14 
16  private $CIPHER_AES_128;
17 
19  private $CIPHER_AES_192;
20 
22  private $CIPHER_AES_256;
23 
26 
29 
32 
35 
37  private $CIPHER_CAST5;
38 
41 
44 
46  private $CIPHER_DES;
47 
49  private $CIPHER_RC2;
50 
52  private $CIPHER_RC4;
53 
55  private $CIPHER_SEED;
56 
58  private $CIPHER_TWOFISH;
59 }
$CIPHER_CAMELIA_128
Camelia cipher with a 128 bit key.
Definition: CipherEnum.php:28
$CIPHER_BLOWFISH
Blowfish cipher.
Definition: CipherEnum.php:25
$CIPHER_CAST5
CAST5 cipher (also known as CAST-128 due to its use of a 128 bit key)
Definition: CipherEnum.php:37
$CIPHER_CHACHA20
ChaCha20 cipher, with optional authenticated data.
Definition: CipherEnum.php:40
$CIPHER_CHACHA20_OPENSSH
ChaCha20 cipher with authenticated data (OpenSSH variant)
Definition: CipherEnum.php:43
$CIPHER_AES_128
Advanced Encryption Standard cipher with a 128 bit key.
Definition: CipherEnum.php:16
$CIPHER_CAMELIA_256
Camelia cipher with a 256 bit key.
Definition: CipherEnum.php:34
$CIPHER_AES_192
Advanced Encryption Standard cipher with a 192 bit key.
Definition: CipherEnum.php:19
$CIPHER_3DES
Triple-DES cipher.
Definition: CipherEnum.php:13
$CIPHER_AES_256
Advanced Encryption Standard cipher with a 256 bit key.
Definition: CipherEnum.php:22
$CIPHER_TWOFISH
Twofish cipher.
Definition: CipherEnum.php:58
$CIPHER_DES
Data Encryption Standard cipher.
Definition: CipherEnum.php:46
$CIPHER_CAMELIA_192
Camelia cipher with a 192 bit key.
Definition: CipherEnum.php:31