commit 1ca0b6131b7e6b8c596c624f7b034eb7e8d3d8c3 parent 3deb39fabc8ac7fe7c61386f65f3ee6f378e00a1 Author: Cody Lewis <luxdotsugi@gmail.com> Date: Mon, 10 Dec 2018 21:10:23 +1100 README update Diffstat:
D | README.md | | | 7 | ------- |
A | README.org | | | 19 | +++++++++++++++++++ |
2 files changed, 19 insertions(+), 7 deletions(-)
diff --git a/README.md b/README.md @@ -1,7 +0,0 @@ -# SCPApp -A full duplex Client-Server Socket based SCP application, with a Diffie-Hellman -key exchange at the beginning and AES encryption over messages. -## Running -Compile with `javac *.java` -Then start the server with `java ChatServer` -And start the client with `java ChatClient` diff --git a/README.org b/README.org @@ -0,0 +1,19 @@ +#+TITLE: SCPApp +#+AUTHOR: Cody Lewis +A full duplex Client-Server Socket based SCP application, with a Diffie-Hellman +key exchange at the beginning and AES encryption over messages. + +** Compiling +#+BEGIN_SRC shell +javac *.java +#+END_SRC + +** Running +*** Server +#+BEGIN_SRC shell +java ChatServer +#+END_SRC +*** Client +#+BEGIN_SRC shell +java ChatClient +#+END_SRC