Moved classes to new folders

This commit is contained in:
2022-01-07 21:08:16 -05:00
parent 36ffc9fe0f
commit b9ccfce5a2
15 changed files with 21 additions and 20 deletions

View File

@@ -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{

View File

@@ -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{

View File

@@ -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

View File

@@ -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{

View File

@@ -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

View File

@@ -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{

View File

@@ -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{

View File

@@ -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{

View File

@@ -2,7 +2,7 @@
//Matthew Ellison
// Created: 07-25-21
//Modified: 01-04-22
package com.mattrixwv.CipherStreamJava;
package com.mattrixwv.CipherStreamJava.monoSubstitution;
import static org.junit.Assert.assertEquals;

View File

@@ -2,7 +2,7 @@
//Matthew Ellison
// Created: 07-26-21
//Modified: 01-04-22
package com.mattrixwv.CipherStreamJava;
package com.mattrixwv.CipherStreamJava.monoSubstitution;
import static org.junit.Assert.assertEquals;

View File

@@ -2,7 +2,7 @@
//Matthew Ellison
// Created: 07-25-21
//Modified: 01-04-22
package com.mattrixwv.CipherStreamJava;
package com.mattrixwv.CipherStreamJava.monoSubstitution;
import static org.junit.Assert.assertEquals;

View File

@@ -2,7 +2,7 @@
//Matthew Ellison
// Created: 07-25-21
//Modified: 01-04-22
package com.mattrixwv.CipherStreamJava;
package com.mattrixwv.CipherStreamJava.monoSubstitution;
import static org.junit.Assert.assertEquals;

View File

@@ -2,7 +2,7 @@
//Matthew Ellison
// Created: 07-28-21
//Modified: 01-04-22
package com.mattrixwv.CipherStreamJava;
package com.mattrixwv.CipherStreamJava.polySubstitution;
import static org.junit.Assert.assertEquals;

View File

@@ -2,12 +2,12 @@
//Matthew Ellison
// Created: 07-30-21
//Modified: 01-04-22
package com.mattrixwv.CipherStreamJava;
package com.mattrixwv.CipherStreamJava.polySubstitution;
import static org.junit.Assert.assertEquals;
import com.mattrixwv.CipherStreamJava.Exceptions.InvalidCharacterException;
import com.mattrixwv.CipherStreamJava.exceptions.InvalidCharacterException;
import org.junit.Test;

View File

@@ -2,12 +2,12 @@
//Mattrixwv
// Created: 01-04-22
//Modified: 01-04-22
package com.mattrixwv.CipherStreamJava;
package com.mattrixwv.CipherStreamJava.polySubstitution;
import static org.junit.Assert.assertEquals;
import com.mattrixwv.CipherStreamJava.Exceptions.InvalidCharacterException;
import com.mattrixwv.CipherStreamJava.exceptions.InvalidCharacterException;
import org.junit.Test;