Compare commits
28 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
58b91da0dd | ||
|
e0f1b579f5 | ||
|
4e1fc596e4 | ||
|
95a8edf6e9 | ||
|
aeacde432c | ||
|
fc88d83610 | ||
|
543a1c5eff | ||
|
8279aacd07 | ||
|
50e49a838d | ||
|
a2530fd971 | ||
|
4a9e5ee404 | ||
|
9afe7c90e4 | ||
|
55f2784ba0 | ||
|
31bf88df1c | ||
|
961cce67fb | ||
|
1d33e76c69 | ||
|
b0f6051ece | ||
|
3c8697cf7d | ||
|
d0c088e7d6 | ||
|
39fd46dfa2 | ||
|
66be1c76c5 | ||
|
12d4538c68 | ||
|
94cf6b1e65 | ||
|
08537982ff | ||
|
7cdfa47a4e | ||
|
1944cb35f9 | ||
|
9e822604de | ||
|
7c6cc5161e |
12
README.md
@ -1,3 +1,5 @@
|
||||
**please just use another encryption software which works correctly and has better en-/decoding options**
|
||||
|
||||
**_cryptoGX_** - just another en- / decryption software
|
||||
|
||||
- [Introduction](#introduction)
|
||||
@ -20,10 +22,10 @@ java version and include [javaFX](#https://openjfx.io/) manually
|
||||
|
||||
| Latest release (1.12.0) |
|
||||
|:------------------------|
|
||||
| [Source code](https://github.com/blueShard-dev/cryptoGX/archive/master.zip) |
|
||||
| [Executable jar file](https://dl.dropbox.com/s/1px5dotzyop3rpn/cryptoGX.jar?dl=0) |
|
||||
| [Windows portable](https://dl.dropbox.com/s/10jf6cfpnejrvbf/cryptoGX_1.11.0_portable.exe?dl=0) |
|
||||
| [Windows installer](https://dl.dropbox.com/s/lq9kuv4erv39y3n/cryptoGX_1.11.0_win_setup.exe?dl=0) |
|
||||
| [Source code](https://github.com/blueShard-dev/cryptoGX/archive/v1.12.0.zip) |
|
||||
| [Executable jar file](https://github.com/blueShard-dev/cryptoGX/releases/download/v1.12.0/cryptoGX.jar) |
|
||||
| [Windows installer](https://github.com/blueShard-dev/cryptoGX/releases/download/v1.12.0/cryptoGX-1.12.0_win_installer.exe) |
|
||||
| [Debian installer](https://github.com/blueShard-dev/cryptoGX/releases/download/v1.12.0/cryptogx-1.12.0_debian_installer.deb) |
|
||||
|
||||
**NOTE**: If you download one of the windows executables (`.exe`) your antivirus may scan the file(s)
|
||||
|
||||
@ -51,4 +53,4 @@ or type `<cryptoGX jar file> help` to get help
|
||||
|
||||
# License
|
||||
|
||||
This project is licensed under the Mozilla Public License 2.0 - see the [LICENSE](License) file for more details
|
||||
This project is licensed under the Mozilla Public Licence 2.0 - see the [LICENSE](LICENSE) file for more details
|
||||
|
@ -1,4 +1,4 @@
|
||||
package org.blueshard.cryptogx;
|
||||
package org.bytedream.cryptogx;
|
||||
|
||||
import javafx.application.Platform;
|
||||
import javafx.collections.FXCollections;
|
||||
@ -47,8 +47,8 @@ import java.util.*;
|
||||
import java.util.List;
|
||||
import java.util.concurrent.atomic.AtomicInteger;
|
||||
|
||||
import static org.blueshard.cryptogx.Settings.*;
|
||||
import static org.blueshard.cryptogx.Main.*;
|
||||
import static org.bytedream.cryptogx.Settings.*;
|
||||
import static org.bytedream.cryptogx.Main.*;
|
||||
|
||||
public class Controller implements Initializable {
|
||||
|
@ -1,4 +1,4 @@
|
||||
package org.blueshard.cryptogx;
|
||||
package org.bytedream.cryptogx;
|
||||
|
||||
import javax.crypto.*;
|
||||
import javax.crypto.spec.PBEKeySpec;
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* @author blueShard
|
||||
* @author bytedream
|
||||
* @version 1.12.0
|
||||
*
|
||||
* Some <code>@since</code> versions may be not correct, because the <code>@since</code> tag got added in
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
*/
|
||||
|
||||
package org.blueshard.cryptogx;
|
||||
package org.bytedream.cryptogx;
|
||||
|
||||
import javafx.application.Application;
|
||||
import javafx.fxml.FXMLLoader;
|
@ -1,4 +1,4 @@
|
||||
package org.blueshard.cryptogx;
|
||||
package org.bytedream.cryptogx;
|
||||
|
||||
import java.io.*;
|
||||
import java.nio.file.Files;
|
@ -1,4 +1,4 @@
|
||||
package org.blueshard.cryptogx;
|
||||
package org.bytedream.cryptoGX;
|
||||
|
||||
import javafx.application.Platform;
|
||||
import javafx.collections.FXCollections;
|
||||
@ -23,7 +23,7 @@ import java.security.spec.InvalidKeySpecException;
|
||||
import java.util.*;
|
||||
import java.util.concurrent.atomic.AtomicReference;
|
||||
|
||||
import static org.blueshard.cryptogx.Main.*;
|
||||
import static org.bytedream.cryptogx.Main.*;
|
||||
|
||||
/**
|
||||
* <p>Class for the user configuration / settings</p>
|
@ -1,4 +1,4 @@
|
||||
package org.blueshard.cryptogx;
|
||||
package org.bytedream.cryptogx;
|
||||
|
||||
import java.util.TreeMap;
|
||||
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 50 KiB After Width: | Height: | Size: 50 KiB |
Before Width: | Height: | Size: 9.1 KiB After Width: | Height: | Size: 9.1 KiB |
@ -6,7 +6,7 @@
|
||||
<?import javafx.scene.layout.*?>
|
||||
<?import javafx.scene.text.*?>
|
||||
|
||||
<AnchorPane fx:id="rootWindow" prefHeight="470.0" prefWidth="900.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="org.blueshard.cryptogx.Controller">
|
||||
<AnchorPane fx:id="rootWindow" prefHeight="470.0" prefWidth="900.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="org.bytedream.cryptogx.Controller">
|
||||
<children>
|
||||
<MenuBar fx:id="menubar" prefHeight="25.0" prefWidth="900.0">
|
||||
<menus>
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |