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