├── .travis.yml ├── LICENSE ├── README.markdown ├── bin ├── Keytool.php ├── apps.php ├── keytool └── keytool.config.dist.php ├── composer.json ├── library └── TCrypto │ ├── Crypto.php │ ├── CryptoHandler │ ├── CryptoInterface.php │ ├── McryptAes128Cbc.php │ ├── McryptAes256Cbc.php │ ├── OpenSslAes128Cbc.php │ └── OpenSslAes256Cbc.php │ ├── Exception.php │ ├── KeyManager │ ├── Filesystem.php │ ├── KeyManagerException.php │ └── KeyManagerInterface.php │ ├── Keystore │ ├── .htaccess │ └── default.dist │ ├── Loader.php │ ├── Plugin │ ├── CompressPlugin.php │ ├── DefaultPlugin.php │ └── PluginInterface.php │ ├── PluginContainer.php │ ├── StorageHandler │ ├── ArrayStorage.php │ ├── Cookie.php │ ├── PlainString.php │ └── StorageInterface.php │ └── Tools │ ├── ArrayOptionParser.php │ ├── Cli │ ├── App.php │ ├── AppCore.php │ └── Horde │ │ └── Cli.php │ ├── Keytool │ ├── Filesystem.php │ └── KeyParser.php │ ├── SettingStore.php │ └── StringUtil.php ├── phpunit.xml.dist └── tests ├── Data ├── dummyKey.php └── sampleOptions.php ├── TCrypto ├── CryptoHandler │ ├── McryptAes128CbcTest.php │ ├── McryptAes256CbcTest.php │ ├── OpenSslAes128CbcTest.php │ └── OpenSslAes256CbcTest.php ├── CryptoTest.php ├── KeyManager │ └── FilesystemTest.php ├── Plugin │ └── DefaultPluginTest.php ├── PluginContainerTest.php ├── StorageHandler │ └── StringTest.php └── Tools │ ├── ArrayOptionParserTest.php │ └── SettingStoreTest.php ├── bootstrap.php └── phpunit.xml /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/README.markdown -------------------------------------------------------------------------------- /bin/Keytool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/bin/Keytool.php -------------------------------------------------------------------------------- /bin/apps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/bin/apps.php -------------------------------------------------------------------------------- /bin/keytool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/bin/keytool -------------------------------------------------------------------------------- /bin/keytool.config.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/bin/keytool.config.dist.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/composer.json -------------------------------------------------------------------------------- /library/TCrypto/Crypto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/library/TCrypto/Crypto.php -------------------------------------------------------------------------------- /library/TCrypto/CryptoHandler/CryptoInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/library/TCrypto/CryptoHandler/CryptoInterface.php -------------------------------------------------------------------------------- /library/TCrypto/CryptoHandler/McryptAes128Cbc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/library/TCrypto/CryptoHandler/McryptAes128Cbc.php -------------------------------------------------------------------------------- /library/TCrypto/CryptoHandler/McryptAes256Cbc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/library/TCrypto/CryptoHandler/McryptAes256Cbc.php -------------------------------------------------------------------------------- /library/TCrypto/CryptoHandler/OpenSslAes128Cbc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/library/TCrypto/CryptoHandler/OpenSslAes128Cbc.php -------------------------------------------------------------------------------- /library/TCrypto/CryptoHandler/OpenSslAes256Cbc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/library/TCrypto/CryptoHandler/OpenSslAes256Cbc.php -------------------------------------------------------------------------------- /library/TCrypto/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/library/TCrypto/Exception.php -------------------------------------------------------------------------------- /library/TCrypto/KeyManager/Filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/library/TCrypto/KeyManager/Filesystem.php -------------------------------------------------------------------------------- /library/TCrypto/KeyManager/KeyManagerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/library/TCrypto/KeyManager/KeyManagerException.php -------------------------------------------------------------------------------- /library/TCrypto/KeyManager/KeyManagerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/library/TCrypto/KeyManager/KeyManagerInterface.php -------------------------------------------------------------------------------- /library/TCrypto/Keystore/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /library/TCrypto/Keystore/default.dist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /library/TCrypto/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/library/TCrypto/Loader.php -------------------------------------------------------------------------------- /library/TCrypto/Plugin/CompressPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/library/TCrypto/Plugin/CompressPlugin.php -------------------------------------------------------------------------------- /library/TCrypto/Plugin/DefaultPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/library/TCrypto/Plugin/DefaultPlugin.php -------------------------------------------------------------------------------- /library/TCrypto/Plugin/PluginInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/library/TCrypto/Plugin/PluginInterface.php -------------------------------------------------------------------------------- /library/TCrypto/PluginContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/library/TCrypto/PluginContainer.php -------------------------------------------------------------------------------- /library/TCrypto/StorageHandler/ArrayStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/library/TCrypto/StorageHandler/ArrayStorage.php -------------------------------------------------------------------------------- /library/TCrypto/StorageHandler/Cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/library/TCrypto/StorageHandler/Cookie.php -------------------------------------------------------------------------------- /library/TCrypto/StorageHandler/PlainString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/library/TCrypto/StorageHandler/PlainString.php -------------------------------------------------------------------------------- /library/TCrypto/StorageHandler/StorageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/library/TCrypto/StorageHandler/StorageInterface.php -------------------------------------------------------------------------------- /library/TCrypto/Tools/ArrayOptionParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/library/TCrypto/Tools/ArrayOptionParser.php -------------------------------------------------------------------------------- /library/TCrypto/Tools/Cli/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/library/TCrypto/Tools/Cli/App.php -------------------------------------------------------------------------------- /library/TCrypto/Tools/Cli/AppCore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/library/TCrypto/Tools/Cli/AppCore.php -------------------------------------------------------------------------------- /library/TCrypto/Tools/Cli/Horde/Cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/library/TCrypto/Tools/Cli/Horde/Cli.php -------------------------------------------------------------------------------- /library/TCrypto/Tools/Keytool/Filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/library/TCrypto/Tools/Keytool/Filesystem.php -------------------------------------------------------------------------------- /library/TCrypto/Tools/Keytool/KeyParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/library/TCrypto/Tools/Keytool/KeyParser.php -------------------------------------------------------------------------------- /library/TCrypto/Tools/SettingStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/library/TCrypto/Tools/SettingStore.php -------------------------------------------------------------------------------- /library/TCrypto/Tools/StringUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/library/TCrypto/Tools/StringUtil.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /tests/Data/dummyKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/tests/Data/dummyKey.php -------------------------------------------------------------------------------- /tests/Data/sampleOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/tests/Data/sampleOptions.php -------------------------------------------------------------------------------- /tests/TCrypto/CryptoHandler/McryptAes128CbcTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/tests/TCrypto/CryptoHandler/McryptAes128CbcTest.php -------------------------------------------------------------------------------- /tests/TCrypto/CryptoHandler/McryptAes256CbcTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/tests/TCrypto/CryptoHandler/McryptAes256CbcTest.php -------------------------------------------------------------------------------- /tests/TCrypto/CryptoHandler/OpenSslAes128CbcTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/tests/TCrypto/CryptoHandler/OpenSslAes128CbcTest.php -------------------------------------------------------------------------------- /tests/TCrypto/CryptoHandler/OpenSslAes256CbcTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/tests/TCrypto/CryptoHandler/OpenSslAes256CbcTest.php -------------------------------------------------------------------------------- /tests/TCrypto/CryptoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/tests/TCrypto/CryptoTest.php -------------------------------------------------------------------------------- /tests/TCrypto/KeyManager/FilesystemTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/tests/TCrypto/KeyManager/FilesystemTest.php -------------------------------------------------------------------------------- /tests/TCrypto/Plugin/DefaultPluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/tests/TCrypto/Plugin/DefaultPluginTest.php -------------------------------------------------------------------------------- /tests/TCrypto/PluginContainerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/tests/TCrypto/PluginContainerTest.php -------------------------------------------------------------------------------- /tests/TCrypto/StorageHandler/StringTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/tests/TCrypto/StorageHandler/StringTest.php -------------------------------------------------------------------------------- /tests/TCrypto/Tools/ArrayOptionParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/tests/TCrypto/Tools/ArrayOptionParserTest.php -------------------------------------------------------------------------------- /tests/TCrypto/Tools/SettingStoreTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/tests/TCrypto/Tools/SettingStoreTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timoh6/TCrypto/HEAD/tests/phpunit.xml --------------------------------------------------------------------------------