Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kjarosh/xenigma
A Java tool that allows to encrypt/decrypt a string like Enigma.
https://github.com/kjarosh/xenigma
Last synced: 8 days ago
JSON representation
A Java tool that allows to encrypt/decrypt a string like Enigma.
- Host: GitHub
- URL: https://github.com/kjarosh/xenigma
- Owner: kjarosh
- License: gpl-3.0
- Created: 2015-01-23T18:08:43.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-25T11:18:40.000Z (almost 10 years ago)
- Last Synced: 2023-02-27T22:05:44.494Z (over 1 year ago)
- Language: Java
- Homepage:
- Size: 148 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# xenigma
Java tool that allows to encrypt/decrypt string like Enigma# Setting up
1. Compile the source code as `xenigma.jar`
2. Put it into a directory named `xenigma`
3. Make a new file `xenigma.bat`/`xenigma.sh` and copy contents listed below
4. Open a console and enter `xenigma`# xenigma.bat
```
@echo off
java -jar xenigma.jar %*
```# xenigma.sh
```
#!/bin/sh
java -jar xenigma.jar "$@"
```