Moved classes to new folders
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
//Mattrixwv
|
||||
// Created: 01-04-22
|
||||
//Modified: 01-04-22
|
||||
package com.mattrixwv.CipherStreamJava.Exceptions;
|
||||
package com.mattrixwv.CipherStreamJava.exceptions;
|
||||
|
||||
|
||||
public class InvalidCharacterException extends Exception{
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
//Matthew Ellison
|
||||
// Created: 07-25-21
|
||||
//Modified: 01-04-22
|
||||
package com.mattrixwv.CipherStreamJava;
|
||||
package com.mattrixwv.CipherStreamJava.monoSubstitution;
|
||||
|
||||
|
||||
public class Atbash{
|
||||
@@ -2,8 +2,7 @@
|
||||
//Matthew Ellison
|
||||
// Created: 07-25-21
|
||||
//Modified: 01-04-22
|
||||
package com.mattrixwv.CipherStreamJava;
|
||||
|
||||
package com.mattrixwv.CipherStreamJava.monoSubstitution;
|
||||
|
||||
public class Autokey extends Vigenere{
|
||||
//Special rules for setting the strings for encoding
|
||||
@@ -2,7 +2,7 @@
|
||||
//Matthew Ellison
|
||||
// Created: 07-25-21
|
||||
//Modified: 01-04-22
|
||||
package com.mattrixwv.CipherStreamJava;
|
||||
package com.mattrixwv.CipherStreamJava.monoSubstitution;
|
||||
|
||||
|
||||
public class Caesar{
|
||||
@@ -2,10 +2,12 @@
|
||||
//Matthew Ellison
|
||||
// Created: 07-25-21
|
||||
//Modified: 01-04-22
|
||||
package com.mattrixwv.CipherStreamJava;
|
||||
package com.mattrixwv.CipherStreamJava.monoSubstitution;
|
||||
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
|
||||
public class Vigenere{
|
||||
protected String inputString; //This is the string that needs encoded/decoded
|
||||
protected String outputString; //This is the string that is output after encoding/decoding
|
||||
@@ -2,7 +2,7 @@
|
||||
//Matthew Ellison
|
||||
// Created: 07-28-21
|
||||
//Modified: 01-04-22
|
||||
package com.mattrixwv.CipherStreamJava;
|
||||
package com.mattrixwv.CipherStreamJava.polySubstitution;
|
||||
|
||||
|
||||
public class Morse{
|
||||
@@ -2,10 +2,10 @@
|
||||
//Matthew Ellison
|
||||
// Created: 07-30-21
|
||||
//Modified: 01-04-22
|
||||
package com.mattrixwv.CipherStreamJava;
|
||||
package com.mattrixwv.CipherStreamJava.polySubstitution;
|
||||
|
||||
|
||||
import com.mattrixwv.CipherStreamJava.Exceptions.InvalidCharacterException;
|
||||
import com.mattrixwv.CipherStreamJava.exceptions.InvalidCharacterException;
|
||||
|
||||
|
||||
public class Playfair{
|
||||
@@ -2,12 +2,12 @@
|
||||
//Mattrixwv
|
||||
// Created: 01-04-22
|
||||
//Modified: 01-04-22
|
||||
package com.mattrixwv.CipherStreamJava;
|
||||
package com.mattrixwv.CipherStreamJava.polySubstitution;
|
||||
|
||||
|
||||
import java.util.StringJoiner;
|
||||
|
||||
import com.mattrixwv.CipherStreamJava.Exceptions.InvalidCharacterException;
|
||||
import com.mattrixwv.CipherStreamJava.exceptions.InvalidCharacterException;
|
||||
|
||||
|
||||
public class PolybiusSquare{
|
||||
Reference in New Issue
Block a user