An open API service indexing awesome lists of open source software.

https://github.com/rudradcruze/cryptography-algorithm-java

Some algorithm of network cryptography
https://github.com/rudradcruze/cryptography-algorithm-java

algorithms cryptography java network network-security substitution

Last synced: 11 months ago
JSON representation

Some algorithm of network cryptography

Awesome Lists containing this project

README

          

# Cryptography Algorithm Java
Some algorithm of network cryptography

## Substitution Tables
### Table 1
|A|B|C|D|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|
|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|
|Y|O|N|Q|Z|H|V|F|J|I|X|P|R|C|B|L|D|M|U|W|S|G|T|K|A|E|

### Table 2
|A|B|C|D|E|F|G|H|I|J|K|L|M|N|O|P|Q|R|S|T|U|V|W|X|Y|Z|
|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|-|
|M|P|K|N|W|J|T|O|U|F|C|V|A|D|H|B|Y|X|Z|G|I|L|E|R|Q|S|

### Table 3
| A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z |
|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|:-:|
| I | O | T | H | P | W | N | D | A | R | V | Y | Q | G | B | E | M | J | X | C | Z | K | F | S | L | U |

## Assignment
* [Substitution 2 Times (table-1 & (table-2)](src/bd/edu/diu/assignment/SubstitutionCipher.java)
* [Transposition 2 Times)](src/bd/edu/diu/assignment/TranspositionCipher.java)

## Algorithms
* [Basic Substitution](src/bd/edu/diu/substitution/BasicSubstitutionTry.java)
* [Simple Substitution](src/bd/edu/diu/substitution/SimpleSubstitution.java)
* [Substuitution Table Solution (table-1, table-2 & table-3)](src/bd/edu/diu/substitution/AssignmentSubstitutionTable.java)
* [Basic Multiple Substuitution Basic (characters replace)](src/bd/edu/diu/substitution/MultipleSubstitutionBasic.java)
* [Multiple Substuitution (table-1, 2, 3 & characters replace)](src/bd/edu/diu/substitution/AssignmentMultipleSubstitution.java)