https://github.com/d-w-arnold/ciphertext-decryption
Decryption of ciphertexts - Caesar, Vigenere, Transposition or General Substitution ciphers 🔐
https://github.com/d-w-arnold/ciphertext-decryption
ciphertext decryption java
Last synced: 11 months ago
JSON representation
Decryption of ciphertexts - Caesar, Vigenere, Transposition or General Substitution ciphers 🔐
- Host: GitHub
- URL: https://github.com/d-w-arnold/ciphertext-decryption
- Owner: d-w-arnold
- Created: 2019-11-09T23:53:16.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-07-17T16:52:29.000Z (over 4 years ago)
- Last Synced: 2025-02-07T03:41:50.542Z (about 1 year ago)
- Topics: ciphertext, decryption, java
- Language: Java
- Homepage:
- Size: 6.96 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CO634 Assignment 2
Decryption of ciphertexts encrypted with: Caesar, Vigenere, Transposition or General Substitution ciphers.
See the CO634-Assignment-2 assignment brief for further details: `/Cryptography Assignment 2.pdf`
To compile and run:
(Mac OS & Linux)
1) Download zip or clone the repo.
2) Open a command-line application and navigate to the root directory for the repo.
3) To compile: (do not type the `$` as this represents the command prompt)
```bash
$ javac -cp ".:lib/jfxrt.jar" App.java
```
4) To run: (do not type the `$` as this represents the command prompt)
```bash
$ java -cp ".:lib/jfxrt.jar" App
```
(Windows)
1) Download zip or clone the repo.
2) Open a command-line application and navigate to the root directory for the repo.
3) To compile: (do not type the `$` as this represents the command prompt)
```bash
$ javac -cp ".;lib/jfxrt.jar" App.java
```
4) To run: (do not type the `$` as this represents the command prompt)
```bash
$ java -cp ".;lib/jfxrt.jar" App
```