Compare commits
No commits in common. "master" and "v1.12.0" have entirely different histories.
12
README.md
@ -1,5 +1,3 @@
|
||||
**please just use another encryption software which works correctly and has better en-/decoding options**
|
||||
|
||||
**_cryptoGX_** - just another en- / decryption software
|
||||
|
||||
- [Introduction](#introduction)
|
||||
@ -22,10 +20,10 @@ java version and include [javaFX](#https://openjfx.io/) manually
|
||||
|
||||
| Latest release (1.12.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) |
|
||||
| [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) |
|
||||
|
||||
**NOTE**: If you download one of the windows executables (`.exe`) your antivirus may scan the file(s)
|
||||
|
||||
@ -53,4 +51,4 @@ or type `<cryptoGX jar file> help` to get help
|
||||
|
||||
# License
|
||||
|
||||
This project is licensed under the Mozilla Public Licence 2.0 - see the [LICENSE](LICENSE) file for more details
|
||||
This project is licensed under the Mozilla Public License 2.0 - see the [LICENSE](License) file for more details
|
||||
|
@ -1,4 +1,4 @@
|
||||
package org.bytedream.cryptogx;
|
||||
package org.blueshard.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.bytedream.cryptogx.Settings.*;
|
||||
import static org.bytedream.cryptogx.Main.*;
|
||||
import static org.blueshard.cryptogx.Settings.*;
|
||||
import static org.blueshard.cryptogx.Main.*;
|
||||
|
||||
public class Controller implements Initializable {
|
||||
|
@ -1,4 +1,4 @@
|
||||
package org.bytedream.cryptogx;
|
||||
package org.blueshard.cryptogx;
|
||||
|
||||
import javax.crypto.*;
|
||||
import javax.crypto.spec.PBEKeySpec;
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* @author bytedream
|
||||
* @author blueShard
|
||||
* @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.bytedream.cryptogx;
|
||||
package org.blueshard.cryptogx;
|
||||
|
||||
import javafx.application.Application;
|
||||
import javafx.fxml.FXMLLoader;
|
@ -1,4 +1,4 @@
|
||||
package org.bytedream.cryptogx;
|
||||
package org.blueshard.cryptogx;
|
||||
|
||||
import java.io.*;
|
||||
import java.nio.file.Files;
|
@ -1,4 +1,4 @@
|
||||
package org.bytedream.cryptoGX;
|
||||
package org.blueshard.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.bytedream.cryptogx.Main.*;
|
||||
import static org.blueshard.cryptogx.Main.*;
|
||||
|
||||
/**
|
||||
* <p>Class for the user configuration / settings</p>
|
@ -1,4 +1,4 @@
|
||||
package org.bytedream.cryptogx;
|
||||
package org.blueshard.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.bytedream.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.blueshard.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 |