File tree 2 files changed +7
-5
lines changed
main/java/com/thealgorithms/ciphers
test/java/com/thealgorithms/ciphers
2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,9 @@ public class ColumnarTranspositionCipher {
10
10
11
11
private static final char PADDING_CHAR = '≈' ;
12
12
13
+ private ColumnarTranspositionCipher () {
14
+ }
15
+
13
16
/**
14
17
* Encrypts a message using the Columnar Transposition Cipher with the given key.
15
18
*
Original file line number Diff line number Diff line change 1
1
package com .thealgorithms .ciphers ;
2
2
3
+ import static org .junit .jupiter .api .Assertions .assertEquals ;
4
+ import static org .junit .jupiter .api .Assertions .assertNotEquals ;
5
+
6
+ import java .util .stream .Stream ;
3
7
import org .junit .jupiter .params .ParameterizedTest ;
4
8
import org .junit .jupiter .params .provider .Arguments ;
5
9
import org .junit .jupiter .params .provider .MethodSource ;
6
10
7
- import java .util .stream .Stream ;
8
-
9
- import static org .junit .jupiter .api .Assertions .assertEquals ;
10
- import static org .junit .jupiter .api .Assertions .assertNotEquals ;
11
-
12
11
class ColumnarTranspositionCipherTest {
13
12
14
13
@ ParameterizedTest
You can’t perform that action at this time.
0 commit comments