├── .gitignore ├── .travis.yml ├── README.markdown ├── composer.json ├── composer.lock ├── examples ├── CryptLib.php ├── Password │ └── drupal.php └── Random │ ├── numbers.php │ └── strings.php ├── lib └── CryptLib │ ├── Cipher │ ├── Block │ │ ├── AbstractCipher.php │ │ ├── AbstractMode.php │ │ ├── Cipher.php │ │ ├── Cipher │ │ │ ├── AES.php │ │ │ ├── DES.php │ │ │ ├── MCrypt.php │ │ │ ├── Rijndael.php │ │ │ └── TripleDES.php │ │ ├── Mode.php │ │ └── Mode │ │ │ ├── CBC.php │ │ │ ├── CCM.php │ │ │ ├── CFB.php │ │ │ ├── CTR.php │ │ │ ├── ECB.php │ │ │ └── NOFB.php │ └── Factory.php │ ├── Core │ ├── AbstractFactory.php │ ├── AutoLoader.php │ ├── BaseConverter.php │ ├── BigMath.php │ ├── BigMath │ │ ├── BCMath.php │ │ ├── GMP.php │ │ └── PHPMath.php │ ├── Enum.php │ └── Strength.php │ ├── CryptLib.php │ ├── Encryption │ ├── Factory.php │ ├── PackingMode.php │ └── PackingMode │ │ ├── ANSIx923.php │ │ ├── ISO10126.php │ │ ├── None.php │ │ ├── PKCS7.php │ │ └── Zeros.php │ ├── Hash │ ├── CRC32.php │ └── Hash.php │ ├── Key │ ├── Derivation │ │ ├── AbstractDerivation.php │ │ ├── KDF.php │ │ ├── KDF │ │ │ ├── KDF1.php │ │ │ ├── KDF2.php │ │ │ └── KDF3.php │ │ ├── PBKDF.php │ │ └── PBKDF │ │ │ ├── BCrypt.php │ │ │ ├── PBKDF1.php │ │ │ ├── PBKDF2.php │ │ │ ├── SHA256.php │ │ │ ├── SHA512.php │ │ │ └── Schneier.php │ ├── Factory.php │ ├── Generator.php │ ├── Key.php │ ├── Symmetric.php │ └── Symmetric │ │ ├── AbstractSymmetric.php │ │ ├── Generator │ │ └── Internal.php │ │ └── Raw.php │ ├── MAC │ ├── AbstractMAC.php │ ├── Implementation │ │ ├── CMAC.php │ │ └── HMAC.php │ └── MAC.php │ ├── Password │ ├── Factory.php │ ├── Implementation │ │ ├── APR1.php │ │ ├── Blowfish.php │ │ ├── Drupal.php │ │ ├── Hash.php │ │ ├── Joomla.php │ │ ├── PBKDF.php │ │ ├── PHPASS.php │ │ └── PHPBB.php │ └── Password.php │ ├── Random │ ├── AbstractMixer.php │ ├── Factory.php │ ├── Generator.php │ ├── Mixer.php │ ├── Mixer │ │ ├── DES.php │ │ ├── Hash.php │ │ └── Rijndael.php │ ├── Source.php │ └── Source │ │ ├── CAPICOM.php │ │ ├── MTRand.php │ │ ├── MicroTime.php │ │ ├── OpenSSL.php │ │ ├── Rand.php │ │ ├── Random.php │ │ ├── URandom.php │ │ └── UniqID.php │ └── bootstrap.php ├── phpunit.xml.dist └── test ├── Data └── Vectors │ ├── aes-cbc.test-vectors │ ├── aes-cfb.test-vectors │ ├── aes-ctr.test-vectors │ ├── aes-ecb.test-vectors │ ├── aes-ofb.test-vectors │ ├── apr1.custom.test-vectors │ ├── apr1.test-vectors │ ├── blowfish.custom.test-vectors │ ├── ccm-RFC3610.test-vectors │ ├── ccm-cavs11-dvpt.decryption.test-vectors │ ├── cmac-aes.sp-800-38b.test-vectors │ ├── des.test-vectors │ ├── drupal.custom.test-vectors │ ├── hmac.rfc4231.test-vectors │ ├── pbkdf.custom.test-vectors │ ├── pbkdf2-draft-josefsson-sha1.test-vectors │ ├── pbkdf2-draft-josefsson-sha256.test-vectors │ ├── phpass.custom.test-vectors │ ├── phpbb.custom.test-vectors │ ├── rijndael-256-128.unverified.test-vectors │ ├── rijndael-256-192.unverified.test-vectors │ ├── rijndael-256-256.unverified.test-vectors │ ├── triple-des-2-key-128-64.unverified.test-vectors │ └── triple-des-3-key-192-64.unverified.test-vectors ├── Mocks ├── AbstractMock.php ├── Cipher │ ├── Block │ │ └── Cipher.php │ └── Factory.php ├── Core │ ├── Enum.php │ ├── Factory.php │ └── Strength.php ├── Key │ └── Derivation │ │ └── PBKDF.php └── Random │ ├── Generator.php │ ├── Mixer.php │ └── Source.php ├── Unit ├── Cipher │ ├── Block │ │ ├── Cipher │ │ │ ├── AESTest.php │ │ │ ├── DESTest.php │ │ │ ├── MCryptTest.php │ │ │ ├── RijndaelTest.php │ │ │ └── TripleDESTest.php │ │ └── Mode │ │ │ ├── CBCTest.php │ │ │ ├── CCMTest.php │ │ │ ├── CFBTest.php │ │ │ ├── CTRTest.php │ │ │ ├── ECBTest.php │ │ │ └── NOFBTest.php │ └── FactoryTest.php ├── Core │ ├── AbstractFactoryTest.php │ ├── BaseConverterTest.php │ ├── BigMath │ │ ├── BCMathTest.php │ │ ├── GMPTest.php │ │ └── PHPMathTest.php │ ├── BigMathTest.php │ ├── EnumTest.php │ └── StrengthTest.php ├── CryptLibTest.php ├── Encryption │ ├── FactoryTest.php │ └── PackingMode │ │ ├── ANSIx923Test.php │ │ ├── ISO10126Test.php │ │ ├── NoneTest.php │ │ ├── PKCS7Test.php │ │ └── ZerosTest.php ├── Hash │ ├── CRC32Test.php │ └── HashTest.php ├── Key │ ├── Derivation │ │ ├── KDF │ │ │ ├── KDF1Test.php │ │ │ ├── KDF2Test.php │ │ │ └── KDF3Test.php │ │ └── PBKDF │ │ │ ├── BCryptTest.php │ │ │ ├── PBKDF1Test.php │ │ │ ├── PBKDF2Test.php │ │ │ ├── SHA256Test.php │ │ │ ├── SHA512Test.php │ │ │ └── SchneierTest.php │ └── FactoryTest.php ├── MAC │ └── Implementation │ │ ├── CMACTest.php │ │ └── HMACTest.php ├── Password │ ├── FactoryTest.php │ └── Implementation │ │ ├── APR1Test.php │ │ ├── BlowfishTest.php │ │ ├── DrupalTest.php │ │ ├── HashTest.php │ │ ├── JoomlaTest.php │ │ ├── PBKDFTest.php │ │ ├── PHPASSTest.php │ │ └── PHPBBTest.php └── Random │ ├── FactoryTest.php │ ├── GeneratorTest.php │ ├── Mixer │ ├── DESTest.php │ ├── HashTest.php │ └── RijndaelTest.php │ └── Source │ ├── CAPICOMTest.php │ ├── MTRandTest.php │ ├── MicroTimeTest.php │ ├── OpenSSLTest.php │ ├── RandTest.php │ ├── RandomTest.php │ ├── URandomTest.php │ └── UniqIDTest.php ├── Vectors ├── Cipher │ └── Block │ │ ├── Cipher │ │ ├── DESTest.php │ │ ├── RijndaelTest.php │ │ └── TripleDesTest.php │ │ └── Mode │ │ ├── CBCTest.php │ │ ├── CCMTest.php │ │ ├── CFBTest.php │ │ ├── CTRTest.php │ │ ├── ECBTest.php │ │ └── NOFBTest.php ├── Key │ └── Derivation │ │ └── PBKDF │ │ └── PBKDF2Test.php ├── MAC │ ├── CMACTest.php │ └── HMACTest.php ├── Password │ └── Implementation │ │ ├── APR1Test.php │ │ ├── BlowfishTest.php │ │ ├── DrupalTest.php │ │ ├── PBKDFTest.php │ │ ├── PHPASSTest.php │ │ └── PHPBBTest.php └── Random │ └── GeneratorTest.php ├── bootstrap.php └── lib └── VectorParser ├── CAVS.php ├── NESSIE.php ├── RFC3610.php └── SSV.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/README.markdown -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/composer.lock -------------------------------------------------------------------------------- /examples/CryptLib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/examples/CryptLib.php -------------------------------------------------------------------------------- /examples/Password/drupal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/examples/Password/drupal.php -------------------------------------------------------------------------------- /examples/Random/numbers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/examples/Random/numbers.php -------------------------------------------------------------------------------- /examples/Random/strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/examples/Random/strings.php -------------------------------------------------------------------------------- /lib/CryptLib/Cipher/Block/AbstractCipher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Cipher/Block/AbstractCipher.php -------------------------------------------------------------------------------- /lib/CryptLib/Cipher/Block/AbstractMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Cipher/Block/AbstractMode.php -------------------------------------------------------------------------------- /lib/CryptLib/Cipher/Block/Cipher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Cipher/Block/Cipher.php -------------------------------------------------------------------------------- /lib/CryptLib/Cipher/Block/Cipher/AES.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Cipher/Block/Cipher/AES.php -------------------------------------------------------------------------------- /lib/CryptLib/Cipher/Block/Cipher/DES.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Cipher/Block/Cipher/DES.php -------------------------------------------------------------------------------- /lib/CryptLib/Cipher/Block/Cipher/MCrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Cipher/Block/Cipher/MCrypt.php -------------------------------------------------------------------------------- /lib/CryptLib/Cipher/Block/Cipher/Rijndael.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Cipher/Block/Cipher/Rijndael.php -------------------------------------------------------------------------------- /lib/CryptLib/Cipher/Block/Cipher/TripleDES.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Cipher/Block/Cipher/TripleDES.php -------------------------------------------------------------------------------- /lib/CryptLib/Cipher/Block/Mode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Cipher/Block/Mode.php -------------------------------------------------------------------------------- /lib/CryptLib/Cipher/Block/Mode/CBC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Cipher/Block/Mode/CBC.php -------------------------------------------------------------------------------- /lib/CryptLib/Cipher/Block/Mode/CCM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Cipher/Block/Mode/CCM.php -------------------------------------------------------------------------------- /lib/CryptLib/Cipher/Block/Mode/CFB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Cipher/Block/Mode/CFB.php -------------------------------------------------------------------------------- /lib/CryptLib/Cipher/Block/Mode/CTR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Cipher/Block/Mode/CTR.php -------------------------------------------------------------------------------- /lib/CryptLib/Cipher/Block/Mode/ECB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Cipher/Block/Mode/ECB.php -------------------------------------------------------------------------------- /lib/CryptLib/Cipher/Block/Mode/NOFB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Cipher/Block/Mode/NOFB.php -------------------------------------------------------------------------------- /lib/CryptLib/Cipher/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Cipher/Factory.php -------------------------------------------------------------------------------- /lib/CryptLib/Core/AbstractFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Core/AbstractFactory.php -------------------------------------------------------------------------------- /lib/CryptLib/Core/AutoLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Core/AutoLoader.php -------------------------------------------------------------------------------- /lib/CryptLib/Core/BaseConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Core/BaseConverter.php -------------------------------------------------------------------------------- /lib/CryptLib/Core/BigMath.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Core/BigMath.php -------------------------------------------------------------------------------- /lib/CryptLib/Core/BigMath/BCMath.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Core/BigMath/BCMath.php -------------------------------------------------------------------------------- /lib/CryptLib/Core/BigMath/GMP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Core/BigMath/GMP.php -------------------------------------------------------------------------------- /lib/CryptLib/Core/BigMath/PHPMath.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Core/BigMath/PHPMath.php -------------------------------------------------------------------------------- /lib/CryptLib/Core/Enum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Core/Enum.php -------------------------------------------------------------------------------- /lib/CryptLib/Core/Strength.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Core/Strength.php -------------------------------------------------------------------------------- /lib/CryptLib/CryptLib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/CryptLib.php -------------------------------------------------------------------------------- /lib/CryptLib/Encryption/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Encryption/Factory.php -------------------------------------------------------------------------------- /lib/CryptLib/Encryption/PackingMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Encryption/PackingMode.php -------------------------------------------------------------------------------- /lib/CryptLib/Encryption/PackingMode/ANSIx923.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Encryption/PackingMode/ANSIx923.php -------------------------------------------------------------------------------- /lib/CryptLib/Encryption/PackingMode/ISO10126.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Encryption/PackingMode/ISO10126.php -------------------------------------------------------------------------------- /lib/CryptLib/Encryption/PackingMode/None.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Encryption/PackingMode/None.php -------------------------------------------------------------------------------- /lib/CryptLib/Encryption/PackingMode/PKCS7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Encryption/PackingMode/PKCS7.php -------------------------------------------------------------------------------- /lib/CryptLib/Encryption/PackingMode/Zeros.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Encryption/PackingMode/Zeros.php -------------------------------------------------------------------------------- /lib/CryptLib/Hash/CRC32.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Hash/CRC32.php -------------------------------------------------------------------------------- /lib/CryptLib/Hash/Hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Hash/Hash.php -------------------------------------------------------------------------------- /lib/CryptLib/Key/Derivation/AbstractDerivation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Key/Derivation/AbstractDerivation.php -------------------------------------------------------------------------------- /lib/CryptLib/Key/Derivation/KDF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Key/Derivation/KDF.php -------------------------------------------------------------------------------- /lib/CryptLib/Key/Derivation/KDF/KDF1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Key/Derivation/KDF/KDF1.php -------------------------------------------------------------------------------- /lib/CryptLib/Key/Derivation/KDF/KDF2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Key/Derivation/KDF/KDF2.php -------------------------------------------------------------------------------- /lib/CryptLib/Key/Derivation/KDF/KDF3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Key/Derivation/KDF/KDF3.php -------------------------------------------------------------------------------- /lib/CryptLib/Key/Derivation/PBKDF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Key/Derivation/PBKDF.php -------------------------------------------------------------------------------- /lib/CryptLib/Key/Derivation/PBKDF/BCrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Key/Derivation/PBKDF/BCrypt.php -------------------------------------------------------------------------------- /lib/CryptLib/Key/Derivation/PBKDF/PBKDF1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Key/Derivation/PBKDF/PBKDF1.php -------------------------------------------------------------------------------- /lib/CryptLib/Key/Derivation/PBKDF/PBKDF2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Key/Derivation/PBKDF/PBKDF2.php -------------------------------------------------------------------------------- /lib/CryptLib/Key/Derivation/PBKDF/SHA256.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Key/Derivation/PBKDF/SHA256.php -------------------------------------------------------------------------------- /lib/CryptLib/Key/Derivation/PBKDF/SHA512.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Key/Derivation/PBKDF/SHA512.php -------------------------------------------------------------------------------- /lib/CryptLib/Key/Derivation/PBKDF/Schneier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Key/Derivation/PBKDF/Schneier.php -------------------------------------------------------------------------------- /lib/CryptLib/Key/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Key/Factory.php -------------------------------------------------------------------------------- /lib/CryptLib/Key/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Key/Generator.php -------------------------------------------------------------------------------- /lib/CryptLib/Key/Key.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Key/Key.php -------------------------------------------------------------------------------- /lib/CryptLib/Key/Symmetric.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Key/Symmetric.php -------------------------------------------------------------------------------- /lib/CryptLib/Key/Symmetric/AbstractSymmetric.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Key/Symmetric/AbstractSymmetric.php -------------------------------------------------------------------------------- /lib/CryptLib/Key/Symmetric/Generator/Internal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Key/Symmetric/Generator/Internal.php -------------------------------------------------------------------------------- /lib/CryptLib/Key/Symmetric/Raw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Key/Symmetric/Raw.php -------------------------------------------------------------------------------- /lib/CryptLib/MAC/AbstractMAC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/MAC/AbstractMAC.php -------------------------------------------------------------------------------- /lib/CryptLib/MAC/Implementation/CMAC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/MAC/Implementation/CMAC.php -------------------------------------------------------------------------------- /lib/CryptLib/MAC/Implementation/HMAC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/MAC/Implementation/HMAC.php -------------------------------------------------------------------------------- /lib/CryptLib/MAC/MAC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/MAC/MAC.php -------------------------------------------------------------------------------- /lib/CryptLib/Password/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Password/Factory.php -------------------------------------------------------------------------------- /lib/CryptLib/Password/Implementation/APR1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Password/Implementation/APR1.php -------------------------------------------------------------------------------- /lib/CryptLib/Password/Implementation/Blowfish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Password/Implementation/Blowfish.php -------------------------------------------------------------------------------- /lib/CryptLib/Password/Implementation/Drupal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Password/Implementation/Drupal.php -------------------------------------------------------------------------------- /lib/CryptLib/Password/Implementation/Hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Password/Implementation/Hash.php -------------------------------------------------------------------------------- /lib/CryptLib/Password/Implementation/Joomla.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Password/Implementation/Joomla.php -------------------------------------------------------------------------------- /lib/CryptLib/Password/Implementation/PBKDF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Password/Implementation/PBKDF.php -------------------------------------------------------------------------------- /lib/CryptLib/Password/Implementation/PHPASS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Password/Implementation/PHPASS.php -------------------------------------------------------------------------------- /lib/CryptLib/Password/Implementation/PHPBB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Password/Implementation/PHPBB.php -------------------------------------------------------------------------------- /lib/CryptLib/Password/Password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Password/Password.php -------------------------------------------------------------------------------- /lib/CryptLib/Random/AbstractMixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Random/AbstractMixer.php -------------------------------------------------------------------------------- /lib/CryptLib/Random/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Random/Factory.php -------------------------------------------------------------------------------- /lib/CryptLib/Random/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Random/Generator.php -------------------------------------------------------------------------------- /lib/CryptLib/Random/Mixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Random/Mixer.php -------------------------------------------------------------------------------- /lib/CryptLib/Random/Mixer/DES.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Random/Mixer/DES.php -------------------------------------------------------------------------------- /lib/CryptLib/Random/Mixer/Hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Random/Mixer/Hash.php -------------------------------------------------------------------------------- /lib/CryptLib/Random/Mixer/Rijndael.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Random/Mixer/Rijndael.php -------------------------------------------------------------------------------- /lib/CryptLib/Random/Source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Random/Source.php -------------------------------------------------------------------------------- /lib/CryptLib/Random/Source/CAPICOM.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Random/Source/CAPICOM.php -------------------------------------------------------------------------------- /lib/CryptLib/Random/Source/MTRand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Random/Source/MTRand.php -------------------------------------------------------------------------------- /lib/CryptLib/Random/Source/MicroTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Random/Source/MicroTime.php -------------------------------------------------------------------------------- /lib/CryptLib/Random/Source/OpenSSL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Random/Source/OpenSSL.php -------------------------------------------------------------------------------- /lib/CryptLib/Random/Source/Rand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Random/Source/Rand.php -------------------------------------------------------------------------------- /lib/CryptLib/Random/Source/Random.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Random/Source/Random.php -------------------------------------------------------------------------------- /lib/CryptLib/Random/Source/URandom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Random/Source/URandom.php -------------------------------------------------------------------------------- /lib/CryptLib/Random/Source/UniqID.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/Random/Source/UniqID.php -------------------------------------------------------------------------------- /lib/CryptLib/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/lib/CryptLib/bootstrap.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /test/Data/Vectors/aes-cbc.test-vectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Data/Vectors/aes-cbc.test-vectors -------------------------------------------------------------------------------- /test/Data/Vectors/aes-cfb.test-vectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Data/Vectors/aes-cfb.test-vectors -------------------------------------------------------------------------------- /test/Data/Vectors/aes-ctr.test-vectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Data/Vectors/aes-ctr.test-vectors -------------------------------------------------------------------------------- /test/Data/Vectors/aes-ecb.test-vectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Data/Vectors/aes-ecb.test-vectors -------------------------------------------------------------------------------- /test/Data/Vectors/aes-ofb.test-vectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Data/Vectors/aes-ofb.test-vectors -------------------------------------------------------------------------------- /test/Data/Vectors/apr1.custom.test-vectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Data/Vectors/apr1.custom.test-vectors -------------------------------------------------------------------------------- /test/Data/Vectors/apr1.test-vectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Data/Vectors/apr1.test-vectors -------------------------------------------------------------------------------- /test/Data/Vectors/blowfish.custom.test-vectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Data/Vectors/blowfish.custom.test-vectors -------------------------------------------------------------------------------- /test/Data/Vectors/ccm-RFC3610.test-vectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Data/Vectors/ccm-RFC3610.test-vectors -------------------------------------------------------------------------------- /test/Data/Vectors/ccm-cavs11-dvpt.decryption.test-vectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Data/Vectors/ccm-cavs11-dvpt.decryption.test-vectors -------------------------------------------------------------------------------- /test/Data/Vectors/cmac-aes.sp-800-38b.test-vectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Data/Vectors/cmac-aes.sp-800-38b.test-vectors -------------------------------------------------------------------------------- /test/Data/Vectors/des.test-vectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Data/Vectors/des.test-vectors -------------------------------------------------------------------------------- /test/Data/Vectors/drupal.custom.test-vectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Data/Vectors/drupal.custom.test-vectors -------------------------------------------------------------------------------- /test/Data/Vectors/hmac.rfc4231.test-vectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Data/Vectors/hmac.rfc4231.test-vectors -------------------------------------------------------------------------------- /test/Data/Vectors/pbkdf.custom.test-vectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Data/Vectors/pbkdf.custom.test-vectors -------------------------------------------------------------------------------- /test/Data/Vectors/pbkdf2-draft-josefsson-sha1.test-vectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Data/Vectors/pbkdf2-draft-josefsson-sha1.test-vectors -------------------------------------------------------------------------------- /test/Data/Vectors/pbkdf2-draft-josefsson-sha256.test-vectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Data/Vectors/pbkdf2-draft-josefsson-sha256.test-vectors -------------------------------------------------------------------------------- /test/Data/Vectors/phpass.custom.test-vectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Data/Vectors/phpass.custom.test-vectors -------------------------------------------------------------------------------- /test/Data/Vectors/phpbb.custom.test-vectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Data/Vectors/phpbb.custom.test-vectors -------------------------------------------------------------------------------- /test/Data/Vectors/rijndael-256-128.unverified.test-vectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Data/Vectors/rijndael-256-128.unverified.test-vectors -------------------------------------------------------------------------------- /test/Data/Vectors/rijndael-256-192.unverified.test-vectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Data/Vectors/rijndael-256-192.unverified.test-vectors -------------------------------------------------------------------------------- /test/Data/Vectors/rijndael-256-256.unverified.test-vectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Data/Vectors/rijndael-256-256.unverified.test-vectors -------------------------------------------------------------------------------- /test/Data/Vectors/triple-des-2-key-128-64.unverified.test-vectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Data/Vectors/triple-des-2-key-128-64.unverified.test-vectors -------------------------------------------------------------------------------- /test/Data/Vectors/triple-des-3-key-192-64.unverified.test-vectors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Data/Vectors/triple-des-3-key-192-64.unverified.test-vectors -------------------------------------------------------------------------------- /test/Mocks/AbstractMock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Mocks/AbstractMock.php -------------------------------------------------------------------------------- /test/Mocks/Cipher/Block/Cipher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Mocks/Cipher/Block/Cipher.php -------------------------------------------------------------------------------- /test/Mocks/Cipher/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Mocks/Cipher/Factory.php -------------------------------------------------------------------------------- /test/Mocks/Core/Enum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Mocks/Core/Enum.php -------------------------------------------------------------------------------- /test/Mocks/Core/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Mocks/Core/Factory.php -------------------------------------------------------------------------------- /test/Mocks/Core/Strength.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Mocks/Core/Strength.php -------------------------------------------------------------------------------- /test/Mocks/Key/Derivation/PBKDF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Mocks/Key/Derivation/PBKDF.php -------------------------------------------------------------------------------- /test/Mocks/Random/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Mocks/Random/Generator.php -------------------------------------------------------------------------------- /test/Mocks/Random/Mixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Mocks/Random/Mixer.php -------------------------------------------------------------------------------- /test/Mocks/Random/Source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Mocks/Random/Source.php -------------------------------------------------------------------------------- /test/Unit/Cipher/Block/Cipher/AESTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Cipher/Block/Cipher/AESTest.php -------------------------------------------------------------------------------- /test/Unit/Cipher/Block/Cipher/DESTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Cipher/Block/Cipher/DESTest.php -------------------------------------------------------------------------------- /test/Unit/Cipher/Block/Cipher/MCryptTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Cipher/Block/Cipher/MCryptTest.php -------------------------------------------------------------------------------- /test/Unit/Cipher/Block/Cipher/RijndaelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Cipher/Block/Cipher/RijndaelTest.php -------------------------------------------------------------------------------- /test/Unit/Cipher/Block/Cipher/TripleDESTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Cipher/Block/Cipher/TripleDESTest.php -------------------------------------------------------------------------------- /test/Unit/Cipher/Block/Mode/CBCTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Cipher/Block/Mode/CBCTest.php -------------------------------------------------------------------------------- /test/Unit/Cipher/Block/Mode/CCMTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Cipher/Block/Mode/CCMTest.php -------------------------------------------------------------------------------- /test/Unit/Cipher/Block/Mode/CFBTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Cipher/Block/Mode/CFBTest.php -------------------------------------------------------------------------------- /test/Unit/Cipher/Block/Mode/CTRTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Cipher/Block/Mode/CTRTest.php -------------------------------------------------------------------------------- /test/Unit/Cipher/Block/Mode/ECBTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Cipher/Block/Mode/ECBTest.php -------------------------------------------------------------------------------- /test/Unit/Cipher/Block/Mode/NOFBTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Cipher/Block/Mode/NOFBTest.php -------------------------------------------------------------------------------- /test/Unit/Cipher/FactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Cipher/FactoryTest.php -------------------------------------------------------------------------------- /test/Unit/Core/AbstractFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Core/AbstractFactoryTest.php -------------------------------------------------------------------------------- /test/Unit/Core/BaseConverterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Core/BaseConverterTest.php -------------------------------------------------------------------------------- /test/Unit/Core/BigMath/BCMathTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Core/BigMath/BCMathTest.php -------------------------------------------------------------------------------- /test/Unit/Core/BigMath/GMPTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Core/BigMath/GMPTest.php -------------------------------------------------------------------------------- /test/Unit/Core/BigMath/PHPMathTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Core/BigMath/PHPMathTest.php -------------------------------------------------------------------------------- /test/Unit/Core/BigMathTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Core/BigMathTest.php -------------------------------------------------------------------------------- /test/Unit/Core/EnumTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Core/EnumTest.php -------------------------------------------------------------------------------- /test/Unit/Core/StrengthTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Core/StrengthTest.php -------------------------------------------------------------------------------- /test/Unit/CryptLibTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/CryptLibTest.php -------------------------------------------------------------------------------- /test/Unit/Encryption/FactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Encryption/FactoryTest.php -------------------------------------------------------------------------------- /test/Unit/Encryption/PackingMode/ANSIx923Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Encryption/PackingMode/ANSIx923Test.php -------------------------------------------------------------------------------- /test/Unit/Encryption/PackingMode/ISO10126Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Encryption/PackingMode/ISO10126Test.php -------------------------------------------------------------------------------- /test/Unit/Encryption/PackingMode/NoneTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Encryption/PackingMode/NoneTest.php -------------------------------------------------------------------------------- /test/Unit/Encryption/PackingMode/PKCS7Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Encryption/PackingMode/PKCS7Test.php -------------------------------------------------------------------------------- /test/Unit/Encryption/PackingMode/ZerosTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Encryption/PackingMode/ZerosTest.php -------------------------------------------------------------------------------- /test/Unit/Hash/CRC32Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Hash/CRC32Test.php -------------------------------------------------------------------------------- /test/Unit/Hash/HashTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Hash/HashTest.php -------------------------------------------------------------------------------- /test/Unit/Key/Derivation/KDF/KDF1Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Key/Derivation/KDF/KDF1Test.php -------------------------------------------------------------------------------- /test/Unit/Key/Derivation/KDF/KDF2Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Key/Derivation/KDF/KDF2Test.php -------------------------------------------------------------------------------- /test/Unit/Key/Derivation/KDF/KDF3Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Key/Derivation/KDF/KDF3Test.php -------------------------------------------------------------------------------- /test/Unit/Key/Derivation/PBKDF/BCryptTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Key/Derivation/PBKDF/BCryptTest.php -------------------------------------------------------------------------------- /test/Unit/Key/Derivation/PBKDF/PBKDF1Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Key/Derivation/PBKDF/PBKDF1Test.php -------------------------------------------------------------------------------- /test/Unit/Key/Derivation/PBKDF/PBKDF2Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Key/Derivation/PBKDF/PBKDF2Test.php -------------------------------------------------------------------------------- /test/Unit/Key/Derivation/PBKDF/SHA256Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Key/Derivation/PBKDF/SHA256Test.php -------------------------------------------------------------------------------- /test/Unit/Key/Derivation/PBKDF/SHA512Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Key/Derivation/PBKDF/SHA512Test.php -------------------------------------------------------------------------------- /test/Unit/Key/Derivation/PBKDF/SchneierTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Key/Derivation/PBKDF/SchneierTest.php -------------------------------------------------------------------------------- /test/Unit/Key/FactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Key/FactoryTest.php -------------------------------------------------------------------------------- /test/Unit/MAC/Implementation/CMACTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/MAC/Implementation/CMACTest.php -------------------------------------------------------------------------------- /test/Unit/MAC/Implementation/HMACTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/MAC/Implementation/HMACTest.php -------------------------------------------------------------------------------- /test/Unit/Password/FactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Password/FactoryTest.php -------------------------------------------------------------------------------- /test/Unit/Password/Implementation/APR1Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Password/Implementation/APR1Test.php -------------------------------------------------------------------------------- /test/Unit/Password/Implementation/BlowfishTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Password/Implementation/BlowfishTest.php -------------------------------------------------------------------------------- /test/Unit/Password/Implementation/DrupalTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Password/Implementation/DrupalTest.php -------------------------------------------------------------------------------- /test/Unit/Password/Implementation/HashTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Password/Implementation/HashTest.php -------------------------------------------------------------------------------- /test/Unit/Password/Implementation/JoomlaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Password/Implementation/JoomlaTest.php -------------------------------------------------------------------------------- /test/Unit/Password/Implementation/PBKDFTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Password/Implementation/PBKDFTest.php -------------------------------------------------------------------------------- /test/Unit/Password/Implementation/PHPASSTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Password/Implementation/PHPASSTest.php -------------------------------------------------------------------------------- /test/Unit/Password/Implementation/PHPBBTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Password/Implementation/PHPBBTest.php -------------------------------------------------------------------------------- /test/Unit/Random/FactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Random/FactoryTest.php -------------------------------------------------------------------------------- /test/Unit/Random/GeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Random/GeneratorTest.php -------------------------------------------------------------------------------- /test/Unit/Random/Mixer/DESTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Random/Mixer/DESTest.php -------------------------------------------------------------------------------- /test/Unit/Random/Mixer/HashTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Random/Mixer/HashTest.php -------------------------------------------------------------------------------- /test/Unit/Random/Mixer/RijndaelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Random/Mixer/RijndaelTest.php -------------------------------------------------------------------------------- /test/Unit/Random/Source/CAPICOMTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Random/Source/CAPICOMTest.php -------------------------------------------------------------------------------- /test/Unit/Random/Source/MTRandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Random/Source/MTRandTest.php -------------------------------------------------------------------------------- /test/Unit/Random/Source/MicroTimeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Random/Source/MicroTimeTest.php -------------------------------------------------------------------------------- /test/Unit/Random/Source/OpenSSLTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Random/Source/OpenSSLTest.php -------------------------------------------------------------------------------- /test/Unit/Random/Source/RandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Random/Source/RandTest.php -------------------------------------------------------------------------------- /test/Unit/Random/Source/RandomTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Random/Source/RandomTest.php -------------------------------------------------------------------------------- /test/Unit/Random/Source/URandomTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Random/Source/URandomTest.php -------------------------------------------------------------------------------- /test/Unit/Random/Source/UniqIDTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Unit/Random/Source/UniqIDTest.php -------------------------------------------------------------------------------- /test/Vectors/Cipher/Block/Cipher/DESTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Vectors/Cipher/Block/Cipher/DESTest.php -------------------------------------------------------------------------------- /test/Vectors/Cipher/Block/Cipher/RijndaelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Vectors/Cipher/Block/Cipher/RijndaelTest.php -------------------------------------------------------------------------------- /test/Vectors/Cipher/Block/Cipher/TripleDesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Vectors/Cipher/Block/Cipher/TripleDesTest.php -------------------------------------------------------------------------------- /test/Vectors/Cipher/Block/Mode/CBCTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Vectors/Cipher/Block/Mode/CBCTest.php -------------------------------------------------------------------------------- /test/Vectors/Cipher/Block/Mode/CCMTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Vectors/Cipher/Block/Mode/CCMTest.php -------------------------------------------------------------------------------- /test/Vectors/Cipher/Block/Mode/CFBTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Vectors/Cipher/Block/Mode/CFBTest.php -------------------------------------------------------------------------------- /test/Vectors/Cipher/Block/Mode/CTRTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Vectors/Cipher/Block/Mode/CTRTest.php -------------------------------------------------------------------------------- /test/Vectors/Cipher/Block/Mode/ECBTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Vectors/Cipher/Block/Mode/ECBTest.php -------------------------------------------------------------------------------- /test/Vectors/Cipher/Block/Mode/NOFBTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Vectors/Cipher/Block/Mode/NOFBTest.php -------------------------------------------------------------------------------- /test/Vectors/Key/Derivation/PBKDF/PBKDF2Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Vectors/Key/Derivation/PBKDF/PBKDF2Test.php -------------------------------------------------------------------------------- /test/Vectors/MAC/CMACTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Vectors/MAC/CMACTest.php -------------------------------------------------------------------------------- /test/Vectors/MAC/HMACTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Vectors/MAC/HMACTest.php -------------------------------------------------------------------------------- /test/Vectors/Password/Implementation/APR1Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Vectors/Password/Implementation/APR1Test.php -------------------------------------------------------------------------------- /test/Vectors/Password/Implementation/BlowfishTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Vectors/Password/Implementation/BlowfishTest.php -------------------------------------------------------------------------------- /test/Vectors/Password/Implementation/DrupalTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Vectors/Password/Implementation/DrupalTest.php -------------------------------------------------------------------------------- /test/Vectors/Password/Implementation/PBKDFTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Vectors/Password/Implementation/PBKDFTest.php -------------------------------------------------------------------------------- /test/Vectors/Password/Implementation/PHPASSTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Vectors/Password/Implementation/PHPASSTest.php -------------------------------------------------------------------------------- /test/Vectors/Password/Implementation/PHPBBTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Vectors/Password/Implementation/PHPBBTest.php -------------------------------------------------------------------------------- /test/Vectors/Random/GeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/Vectors/Random/GeneratorTest.php -------------------------------------------------------------------------------- /test/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/bootstrap.php -------------------------------------------------------------------------------- /test/lib/VectorParser/CAVS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/lib/VectorParser/CAVS.php -------------------------------------------------------------------------------- /test/lib/VectorParser/NESSIE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/lib/VectorParser/NESSIE.php -------------------------------------------------------------------------------- /test/lib/VectorParser/RFC3610.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/lib/VectorParser/RFC3610.php -------------------------------------------------------------------------------- /test/lib/VectorParser/SSV.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/PHP-CryptLib/HEAD/test/lib/VectorParser/SSV.php --------------------------------------------------------------------------------