Columnar started

This commit is contained in:
2022-01-18 23:14:33 -05:00
parent 0bf4017a40
commit 9b4da1f226
2 changed files with 182 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
//Mattrixwv/src/test/java/com/mattrixwv/CipherStreamJava/polySubstitution/TestColumnar.java
//Mattrixwv
// Created: 01-16-22
//Modified: 01-16-22
package com.mattrixwv.CipherStreamJava.polySubstitution;
import org.junit.Test;
public class TestColumnar{
@Test
public void testEncode(){
Columnar cipher = new Columnar(true, true, true);
}
@Test
public void testDecode(){
Columnar cipher = new Columnar(true, true, true);
}
}