├── .github └── workflows │ └── gradle.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app ├── build.gradle.kts ├── settings.gradle.kts └── src │ ├── main │ ├── kotlin │ │ └── com │ │ │ └── imagecipher │ │ │ └── app │ │ │ ├── CommandArgs.kt │ │ │ ├── CommandExecutor.kt │ │ │ ├── Config.kt │ │ │ ├── Decrypter.kt │ │ │ ├── Main.kt │ │ │ ├── encrypters │ │ │ ├── Encrypter.kt │ │ │ ├── EncrypterManager.kt │ │ │ ├── EncrypterType.kt │ │ │ ├── LowLevelBitEncryption.kt │ │ │ ├── MultiColorEncryption.kt │ │ │ ├── RSAEncryption.kt │ │ │ ├── SingleColorEncryption.kt │ │ │ └── exceptions │ │ │ │ └── InvalidEncryptionTypeException.kt │ │ │ ├── plugin │ │ │ ├── FileLister.kt │ │ │ ├── PluginAuthor.kt │ │ │ ├── PluginConfiguration.kt │ │ │ ├── PluginLoader.kt │ │ │ ├── PluginManager.kt │ │ │ └── lib │ │ │ │ ├── IcEncrypter.kt │ │ │ │ ├── IcPlugin.kt │ │ │ │ ├── PluginInstance.kt │ │ │ │ └── annotations │ │ │ │ └── IcAlgorithmSpecification.kt │ │ │ ├── rest │ │ │ └── github │ │ │ │ ├── GitHubService.kt │ │ │ │ └── Release.kt │ │ │ ├── tools │ │ │ ├── ManifestReader.kt │ │ │ ├── SafeNumberParser.kt │ │ │ └── UpdateChecker.kt │ │ │ └── ui │ │ │ ├── App.kt │ │ │ ├── components │ │ │ ├── ImageTab.kt │ │ │ └── ProcessingTab.kt │ │ │ ├── imageprocessing │ │ │ └── ComposeImagePainter.kt │ │ │ ├── screens │ │ │ └── MainScreen.kt │ │ │ ├── theme │ │ │ └── Theme.kt │ │ │ └── viewmodel │ │ │ └── ImageCipherViewModel.kt │ └── resources │ │ ├── log4j2.xml │ │ └── views │ │ ├── ImageProcessingWindow.fxml │ │ ├── MainWindow.fxml │ │ ├── PixelTraversalWindow.fxml │ │ └── styles │ │ └── style_main_window.css │ └── test │ └── kotlin │ └── com │ └── imagecipher │ └── app │ └── tools │ ├── SafeNumberParserTest.kt │ └── plugin │ ├── FileListerTest.kt │ ├── MockJar.kt │ └── PluginLoaderTest.kt ├── docs ├── allclasses-frame.html ├── allclasses-noframe.html ├── application │ ├── Config.html │ ├── Decrypter.html │ ├── Encrypter.html │ ├── Main.html │ ├── class-use │ │ ├── Config.html │ │ ├── Decrypter.html │ │ ├── Encrypter.html │ │ └── Main.html │ ├── package-frame.html │ ├── package-summary.html │ ├── package-tree.html │ └── package-use.html ├── com │ └── skocur │ │ └── imagecipher │ │ ├── CommandArgs.html │ │ ├── CommandExecutor.html │ │ ├── Config.html │ │ ├── Decrypter.html │ │ ├── Encrypter.html │ │ ├── Main.html │ │ ├── controllers │ │ ├── ImageProcessingController.html │ │ ├── WindowController.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ └── package-tree.html │ │ ├── encrypters │ │ ├── Encrypter.html │ │ ├── LowLevelBitEncryption.html │ │ ├── MultiColorEncryption.html │ │ ├── RSAEncryption.html │ │ ├── SingleColorEncryption.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ └── package-tree.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ ├── package-tree.html │ │ └── tools │ │ └── imageprocessing │ │ ├── ColorFilter.html │ │ ├── ImageNoise.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ └── package-tree.html ├── constant-values.html ├── deprecated-list.html ├── help-doc.html ├── index-files │ ├── index-1.html │ ├── index-10.html │ ├── index-11.html │ ├── index-12.html │ ├── index-13.html │ ├── index-14.html │ ├── index-15.html │ ├── index-2.html │ ├── index-3.html │ ├── index-4.html │ ├── index-5.html │ ├── index-6.html │ ├── index-7.html │ ├── index-8.html │ └── index-9.html ├── index.html ├── overview-frame.html ├── overview-summary.html ├── overview-tree.html ├── package-list ├── script.js └── stylesheet.css ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── images ├── encryption_description.png ├── formula_storage_lowlevelbitencryption.png ├── github-logo.jpeg ├── github-logo_blue.png ├── github-logo_green.png ├── github-logo_noise.png ├── github-logo_red.png ├── github_logo.jpg ├── map_1.png ├── map_2.png └── output.jpeg └── settings.gradle.kts /.github/workflows/gradle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/.github/workflows/gradle.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/README.md -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/settings.gradle.kts -------------------------------------------------------------------------------- /app/src/main/kotlin/com/imagecipher/app/CommandArgs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/kotlin/com/imagecipher/app/CommandArgs.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/imagecipher/app/CommandExecutor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/kotlin/com/imagecipher/app/CommandExecutor.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/imagecipher/app/Config.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/kotlin/com/imagecipher/app/Config.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/imagecipher/app/Decrypter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/kotlin/com/imagecipher/app/Decrypter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/imagecipher/app/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/kotlin/com/imagecipher/app/Main.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/imagecipher/app/encrypters/Encrypter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/kotlin/com/imagecipher/app/encrypters/Encrypter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/imagecipher/app/encrypters/EncrypterManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/kotlin/com/imagecipher/app/encrypters/EncrypterManager.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/imagecipher/app/encrypters/EncrypterType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/kotlin/com/imagecipher/app/encrypters/EncrypterType.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/imagecipher/app/encrypters/LowLevelBitEncryption.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/kotlin/com/imagecipher/app/encrypters/LowLevelBitEncryption.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/imagecipher/app/encrypters/MultiColorEncryption.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/kotlin/com/imagecipher/app/encrypters/MultiColorEncryption.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/imagecipher/app/encrypters/RSAEncryption.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/kotlin/com/imagecipher/app/encrypters/RSAEncryption.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/imagecipher/app/encrypters/SingleColorEncryption.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/kotlin/com/imagecipher/app/encrypters/SingleColorEncryption.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/imagecipher/app/encrypters/exceptions/InvalidEncryptionTypeException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/kotlin/com/imagecipher/app/encrypters/exceptions/InvalidEncryptionTypeException.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/imagecipher/app/plugin/FileLister.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/kotlin/com/imagecipher/app/plugin/FileLister.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/imagecipher/app/plugin/PluginAuthor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/kotlin/com/imagecipher/app/plugin/PluginAuthor.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/imagecipher/app/plugin/PluginConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/kotlin/com/imagecipher/app/plugin/PluginConfiguration.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/imagecipher/app/plugin/PluginLoader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/kotlin/com/imagecipher/app/plugin/PluginLoader.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/imagecipher/app/plugin/PluginManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/kotlin/com/imagecipher/app/plugin/PluginManager.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/imagecipher/app/plugin/lib/IcEncrypter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/kotlin/com/imagecipher/app/plugin/lib/IcEncrypter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/imagecipher/app/plugin/lib/IcPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/kotlin/com/imagecipher/app/plugin/lib/IcPlugin.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/imagecipher/app/plugin/lib/PluginInstance.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/kotlin/com/imagecipher/app/plugin/lib/PluginInstance.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/imagecipher/app/plugin/lib/annotations/IcAlgorithmSpecification.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/kotlin/com/imagecipher/app/plugin/lib/annotations/IcAlgorithmSpecification.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/imagecipher/app/rest/github/GitHubService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/kotlin/com/imagecipher/app/rest/github/GitHubService.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/imagecipher/app/rest/github/Release.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/kotlin/com/imagecipher/app/rest/github/Release.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/imagecipher/app/tools/ManifestReader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/kotlin/com/imagecipher/app/tools/ManifestReader.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/imagecipher/app/tools/SafeNumberParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/kotlin/com/imagecipher/app/tools/SafeNumberParser.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/imagecipher/app/tools/UpdateChecker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/kotlin/com/imagecipher/app/tools/UpdateChecker.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/imagecipher/app/ui/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/kotlin/com/imagecipher/app/ui/App.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/imagecipher/app/ui/components/ImageTab.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/kotlin/com/imagecipher/app/ui/components/ImageTab.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/imagecipher/app/ui/components/ProcessingTab.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/kotlin/com/imagecipher/app/ui/components/ProcessingTab.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/imagecipher/app/ui/imageprocessing/ComposeImagePainter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/kotlin/com/imagecipher/app/ui/imageprocessing/ComposeImagePainter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/imagecipher/app/ui/screens/MainScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/kotlin/com/imagecipher/app/ui/screens/MainScreen.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/imagecipher/app/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/kotlin/com/imagecipher/app/ui/theme/Theme.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/imagecipher/app/ui/viewmodel/ImageCipherViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/kotlin/com/imagecipher/app/ui/viewmodel/ImageCipherViewModel.kt -------------------------------------------------------------------------------- /app/src/main/resources/log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/resources/log4j2.xml -------------------------------------------------------------------------------- /app/src/main/resources/views/ImageProcessingWindow.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/resources/views/ImageProcessingWindow.fxml -------------------------------------------------------------------------------- /app/src/main/resources/views/MainWindow.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/resources/views/MainWindow.fxml -------------------------------------------------------------------------------- /app/src/main/resources/views/PixelTraversalWindow.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/resources/views/PixelTraversalWindow.fxml -------------------------------------------------------------------------------- /app/src/main/resources/views/styles/style_main_window.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/main/resources/views/styles/style_main_window.css -------------------------------------------------------------------------------- /app/src/test/kotlin/com/imagecipher/app/tools/SafeNumberParserTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/test/kotlin/com/imagecipher/app/tools/SafeNumberParserTest.kt -------------------------------------------------------------------------------- /app/src/test/kotlin/com/imagecipher/app/tools/plugin/FileListerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/test/kotlin/com/imagecipher/app/tools/plugin/FileListerTest.kt -------------------------------------------------------------------------------- /app/src/test/kotlin/com/imagecipher/app/tools/plugin/MockJar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/test/kotlin/com/imagecipher/app/tools/plugin/MockJar.kt -------------------------------------------------------------------------------- /app/src/test/kotlin/com/imagecipher/app/tools/plugin/PluginLoaderTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/app/src/test/kotlin/com/imagecipher/app/tools/plugin/PluginLoaderTest.kt -------------------------------------------------------------------------------- /docs/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/allclasses-frame.html -------------------------------------------------------------------------------- /docs/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/allclasses-noframe.html -------------------------------------------------------------------------------- /docs/application/Config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/application/Config.html -------------------------------------------------------------------------------- /docs/application/Decrypter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/application/Decrypter.html -------------------------------------------------------------------------------- /docs/application/Encrypter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/application/Encrypter.html -------------------------------------------------------------------------------- /docs/application/Main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/application/Main.html -------------------------------------------------------------------------------- /docs/application/class-use/Config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/application/class-use/Config.html -------------------------------------------------------------------------------- /docs/application/class-use/Decrypter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/application/class-use/Decrypter.html -------------------------------------------------------------------------------- /docs/application/class-use/Encrypter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/application/class-use/Encrypter.html -------------------------------------------------------------------------------- /docs/application/class-use/Main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/application/class-use/Main.html -------------------------------------------------------------------------------- /docs/application/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/application/package-frame.html -------------------------------------------------------------------------------- /docs/application/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/application/package-summary.html -------------------------------------------------------------------------------- /docs/application/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/application/package-tree.html -------------------------------------------------------------------------------- /docs/application/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/application/package-use.html -------------------------------------------------------------------------------- /docs/com/skocur/imagecipher/CommandArgs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/com/skocur/imagecipher/CommandArgs.html -------------------------------------------------------------------------------- /docs/com/skocur/imagecipher/CommandExecutor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/com/skocur/imagecipher/CommandExecutor.html -------------------------------------------------------------------------------- /docs/com/skocur/imagecipher/Config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/com/skocur/imagecipher/Config.html -------------------------------------------------------------------------------- /docs/com/skocur/imagecipher/Decrypter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/com/skocur/imagecipher/Decrypter.html -------------------------------------------------------------------------------- /docs/com/skocur/imagecipher/Encrypter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/com/skocur/imagecipher/Encrypter.html -------------------------------------------------------------------------------- /docs/com/skocur/imagecipher/Main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/com/skocur/imagecipher/Main.html -------------------------------------------------------------------------------- /docs/com/skocur/imagecipher/controllers/ImageProcessingController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/com/skocur/imagecipher/controllers/ImageProcessingController.html -------------------------------------------------------------------------------- /docs/com/skocur/imagecipher/controllers/WindowController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/com/skocur/imagecipher/controllers/WindowController.html -------------------------------------------------------------------------------- /docs/com/skocur/imagecipher/controllers/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/com/skocur/imagecipher/controllers/package-frame.html -------------------------------------------------------------------------------- /docs/com/skocur/imagecipher/controllers/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/com/skocur/imagecipher/controllers/package-summary.html -------------------------------------------------------------------------------- /docs/com/skocur/imagecipher/controllers/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/com/skocur/imagecipher/controllers/package-tree.html -------------------------------------------------------------------------------- /docs/com/skocur/imagecipher/encrypters/Encrypter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/com/skocur/imagecipher/encrypters/Encrypter.html -------------------------------------------------------------------------------- /docs/com/skocur/imagecipher/encrypters/LowLevelBitEncryption.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/com/skocur/imagecipher/encrypters/LowLevelBitEncryption.html -------------------------------------------------------------------------------- /docs/com/skocur/imagecipher/encrypters/MultiColorEncryption.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/com/skocur/imagecipher/encrypters/MultiColorEncryption.html -------------------------------------------------------------------------------- /docs/com/skocur/imagecipher/encrypters/RSAEncryption.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/com/skocur/imagecipher/encrypters/RSAEncryption.html -------------------------------------------------------------------------------- /docs/com/skocur/imagecipher/encrypters/SingleColorEncryption.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/com/skocur/imagecipher/encrypters/SingleColorEncryption.html -------------------------------------------------------------------------------- /docs/com/skocur/imagecipher/encrypters/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/com/skocur/imagecipher/encrypters/package-frame.html -------------------------------------------------------------------------------- /docs/com/skocur/imagecipher/encrypters/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/com/skocur/imagecipher/encrypters/package-summary.html -------------------------------------------------------------------------------- /docs/com/skocur/imagecipher/encrypters/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/com/skocur/imagecipher/encrypters/package-tree.html -------------------------------------------------------------------------------- /docs/com/skocur/imagecipher/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/com/skocur/imagecipher/package-frame.html -------------------------------------------------------------------------------- /docs/com/skocur/imagecipher/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/com/skocur/imagecipher/package-summary.html -------------------------------------------------------------------------------- /docs/com/skocur/imagecipher/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/com/skocur/imagecipher/package-tree.html -------------------------------------------------------------------------------- /docs/com/skocur/imagecipher/tools/imageprocessing/ColorFilter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/com/skocur/imagecipher/tools/imageprocessing/ColorFilter.html -------------------------------------------------------------------------------- /docs/com/skocur/imagecipher/tools/imageprocessing/ImageNoise.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/com/skocur/imagecipher/tools/imageprocessing/ImageNoise.html -------------------------------------------------------------------------------- /docs/com/skocur/imagecipher/tools/imageprocessing/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/com/skocur/imagecipher/tools/imageprocessing/package-frame.html -------------------------------------------------------------------------------- /docs/com/skocur/imagecipher/tools/imageprocessing/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/com/skocur/imagecipher/tools/imageprocessing/package-summary.html -------------------------------------------------------------------------------- /docs/com/skocur/imagecipher/tools/imageprocessing/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/com/skocur/imagecipher/tools/imageprocessing/package-tree.html -------------------------------------------------------------------------------- /docs/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/constant-values.html -------------------------------------------------------------------------------- /docs/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/deprecated-list.html -------------------------------------------------------------------------------- /docs/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/help-doc.html -------------------------------------------------------------------------------- /docs/index-files/index-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/index-files/index-1.html -------------------------------------------------------------------------------- /docs/index-files/index-10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/index-files/index-10.html -------------------------------------------------------------------------------- /docs/index-files/index-11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/index-files/index-11.html -------------------------------------------------------------------------------- /docs/index-files/index-12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/index-files/index-12.html -------------------------------------------------------------------------------- /docs/index-files/index-13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/index-files/index-13.html -------------------------------------------------------------------------------- /docs/index-files/index-14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/index-files/index-14.html -------------------------------------------------------------------------------- /docs/index-files/index-15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/index-files/index-15.html -------------------------------------------------------------------------------- /docs/index-files/index-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/index-files/index-2.html -------------------------------------------------------------------------------- /docs/index-files/index-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/index-files/index-3.html -------------------------------------------------------------------------------- /docs/index-files/index-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/index-files/index-4.html -------------------------------------------------------------------------------- /docs/index-files/index-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/index-files/index-5.html -------------------------------------------------------------------------------- /docs/index-files/index-6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/index-files/index-6.html -------------------------------------------------------------------------------- /docs/index-files/index-7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/index-files/index-7.html -------------------------------------------------------------------------------- /docs/index-files/index-8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/index-files/index-8.html -------------------------------------------------------------------------------- /docs/index-files/index-9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/index-files/index-9.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/overview-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/overview-frame.html -------------------------------------------------------------------------------- /docs/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/overview-summary.html -------------------------------------------------------------------------------- /docs/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/overview-tree.html -------------------------------------------------------------------------------- /docs/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/package-list -------------------------------------------------------------------------------- /docs/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/script.js -------------------------------------------------------------------------------- /docs/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/docs/stylesheet.css -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/gradlew.bat -------------------------------------------------------------------------------- /images/encryption_description.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/images/encryption_description.png -------------------------------------------------------------------------------- /images/formula_storage_lowlevelbitencryption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/images/formula_storage_lowlevelbitencryption.png -------------------------------------------------------------------------------- /images/github-logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/images/github-logo.jpeg -------------------------------------------------------------------------------- /images/github-logo_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/images/github-logo_blue.png -------------------------------------------------------------------------------- /images/github-logo_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/images/github-logo_green.png -------------------------------------------------------------------------------- /images/github-logo_noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/images/github-logo_noise.png -------------------------------------------------------------------------------- /images/github-logo_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/images/github-logo_red.png -------------------------------------------------------------------------------- /images/github_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/images/github_logo.jpg -------------------------------------------------------------------------------- /images/map_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/images/map_1.png -------------------------------------------------------------------------------- /images/map_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/images/map_2.png -------------------------------------------------------------------------------- /images/output.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKocur/Image-Cipher/HEAD/images/output.jpeg -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | rootProject.name = "image-cipher" 2 | 3 | include(":app") 4 | --------------------------------------------------------------------------------