add methods to decrypt return data from router
authorStricted <info@stricted.de>
Wed, 1 Jul 2015 04:36:25 +0000 (06:36 +0200)
committerStricted <info@stricted.de>
Wed, 1 Jul 2015 04:36:25 +0000 (06:36 +0200)
commit14d4f286d33b631a93207e4d13086c0a3bc0df12
treebadf725fd840405f87ea96ad4d75e1a330f9d886
parentc9e082da5cc662b64a74d3770f13d1270068678f
add methods to decrypt return data from router
86 files changed:
CryptLib/Cipher/Block/AbstractCipher.php [new file with mode: 0644]
CryptLib/Cipher/Block/AbstractMode.php [new file with mode: 0644]
CryptLib/Cipher/Block/Cipher.php [new file with mode: 0644]
CryptLib/Cipher/Block/Cipher/AES.php [new file with mode: 0644]
CryptLib/Cipher/Block/Cipher/DES.php [new file with mode: 0644]
CryptLib/Cipher/Block/Cipher/MCrypt.php [new file with mode: 0644]
CryptLib/Cipher/Block/Cipher/Rijndael.php [new file with mode: 0644]
CryptLib/Cipher/Block/Cipher/TripleDES.php [new file with mode: 0644]
CryptLib/Cipher/Block/Mode.php [new file with mode: 0644]
CryptLib/Cipher/Block/Mode/CBC.php [new file with mode: 0644]
CryptLib/Cipher/Block/Mode/CCM.php [new file with mode: 0644]
CryptLib/Cipher/Block/Mode/CFB.php [new file with mode: 0644]
CryptLib/Cipher/Block/Mode/CTR.php [new file with mode: 0644]
CryptLib/Cipher/Block/Mode/ECB.php [new file with mode: 0644]
CryptLib/Cipher/Block/Mode/NOFB.php [new file with mode: 0644]
CryptLib/Cipher/Factory.php [new file with mode: 0644]
CryptLib/Core/AbstractFactory.php [new file with mode: 0644]
CryptLib/Core/AutoLoader.php [new file with mode: 0644]
CryptLib/Core/BaseConverter.php [new file with mode: 0644]
CryptLib/Core/BigMath.php [new file with mode: 0644]
CryptLib/Core/BigMath/BCMath.php [new file with mode: 0644]
CryptLib/Core/BigMath/GMP.php [new file with mode: 0644]
CryptLib/Core/BigMath/PHPMath.php [new file with mode: 0644]
CryptLib/Core/Enum.php [new file with mode: 0644]
CryptLib/Core/Strength.php [new file with mode: 0644]
CryptLib/CryptLib.php [new file with mode: 0644]
CryptLib/Encryption/Factory.php [new file with mode: 0644]
CryptLib/Encryption/PackingMode.php [new file with mode: 0644]
CryptLib/Encryption/PackingMode/ANSIx923.php [new file with mode: 0644]
CryptLib/Encryption/PackingMode/ISO10126.php [new file with mode: 0644]
CryptLib/Encryption/PackingMode/None.php [new file with mode: 0644]
CryptLib/Encryption/PackingMode/PKCS7.php [new file with mode: 0644]
CryptLib/Encryption/PackingMode/Zeros.php [new file with mode: 0644]
CryptLib/Hash/CRC32.php [new file with mode: 0644]
CryptLib/Hash/Hash.php [new file with mode: 0644]
CryptLib/Key/Derivation/AbstractDerivation.php [new file with mode: 0644]
CryptLib/Key/Derivation/KDF.php [new file with mode: 0644]
CryptLib/Key/Derivation/KDF/KDF1.php [new file with mode: 0644]
CryptLib/Key/Derivation/KDF/KDF2.php [new file with mode: 0644]
CryptLib/Key/Derivation/KDF/KDF3.php [new file with mode: 0644]
CryptLib/Key/Derivation/PBKDF.php [new file with mode: 0644]
CryptLib/Key/Derivation/PBKDF/BCrypt.php [new file with mode: 0644]
CryptLib/Key/Derivation/PBKDF/PBKDF1.php [new file with mode: 0644]
CryptLib/Key/Derivation/PBKDF/PBKDF2.php [new file with mode: 0644]
CryptLib/Key/Derivation/PBKDF/SHA256.php [new file with mode: 0644]
CryptLib/Key/Derivation/PBKDF/SHA512.php [new file with mode: 0644]
CryptLib/Key/Derivation/PBKDF/Schneier.php [new file with mode: 0644]
CryptLib/Key/Factory.php [new file with mode: 0644]
CryptLib/Key/Generator.php [new file with mode: 0644]
CryptLib/Key/Key.php [new file with mode: 0644]
CryptLib/Key/Symmetric.php [new file with mode: 0644]
CryptLib/Key/Symmetric/AbstractSymmetric.php [new file with mode: 0644]
CryptLib/Key/Symmetric/Generator/Internal.php [new file with mode: 0644]
CryptLib/Key/Symmetric/Raw.php [new file with mode: 0644]
CryptLib/MAC/AbstractMAC.php [new file with mode: 0644]
CryptLib/MAC/Implementation/CMAC.php [new file with mode: 0644]
CryptLib/MAC/Implementation/HMAC.php [new file with mode: 0644]
CryptLib/MAC/MAC.php [new file with mode: 0644]
CryptLib/Password/Factory.php [new file with mode: 0644]
CryptLib/Password/Implementation/APR1.php [new file with mode: 0644]
CryptLib/Password/Implementation/Blowfish.php [new file with mode: 0644]
CryptLib/Password/Implementation/Drupal.php [new file with mode: 0644]
CryptLib/Password/Implementation/Hash.php [new file with mode: 0644]
CryptLib/Password/Implementation/Joomla.php [new file with mode: 0644]
CryptLib/Password/Implementation/PBKDF.php [new file with mode: 0644]
CryptLib/Password/Implementation/PHPASS.php [new file with mode: 0644]
CryptLib/Password/Implementation/PHPBB.php [new file with mode: 0644]
CryptLib/Password/Password.php [new file with mode: 0644]
CryptLib/Random/AbstractMixer.php [new file with mode: 0644]
CryptLib/Random/Factory.php [new file with mode: 0644]
CryptLib/Random/Generator.php [new file with mode: 0644]
CryptLib/Random/Mixer.php [new file with mode: 0644]
CryptLib/Random/Mixer/DES.php [new file with mode: 0644]
CryptLib/Random/Mixer/Hash.php [new file with mode: 0644]
CryptLib/Random/Mixer/Rijndael.php [new file with mode: 0644]
CryptLib/Random/Source.php [new file with mode: 0644]
CryptLib/Random/Source/CAPICOM.php [new file with mode: 0644]
CryptLib/Random/Source/MTRand.php [new file with mode: 0644]
CryptLib/Random/Source/MicroTime.php [new file with mode: 0644]
CryptLib/Random/Source/OpenSSL.php [new file with mode: 0644]
CryptLib/Random/Source/Rand.php [new file with mode: 0644]
CryptLib/Random/Source/Random.php [new file with mode: 0644]
CryptLib/Random/Source/URandom.php [new file with mode: 0644]
CryptLib/Random/Source/UniqID.php [new file with mode: 0644]
CryptLib/bootstrap.php [new file with mode: 0644]
speedport.class.php