-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVigenereCipher.java
42 lines (36 loc) · 1.16 KB
/
VigenereCipher.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import edu.duke.*;
import java.util.*;
public class VigenereCipher {
CaesarCipher[] ciphers;
public VigenereCipher(int[] key) {
ciphers = new CaesarCipher[key.length];
for (int i = 0; i < key.length; i++) {
ciphers[i] = new CaesarCipher(key[i]);
}
}
public String encrypt(String input) {
StringBuilder answer = new StringBuilder();
int i = 0;
for (char c : input.toCharArray()) {
int cipherIndex = i % ciphers.length;
CaesarCipher thisCipher = ciphers[cipherIndex];
answer.append(thisCipher.encryptLetter(c));
i++;
}
return answer.toString();
}
public String decrypt(String input) {
StringBuilder answer = new StringBuilder();
int i = 0;
for (char c : input.toCharArray()) {
int cipherIndex = i % ciphers.length;
CaesarCipher thisCipher = ciphers[cipherIndex];
answer.append(thisCipher.decryptLetter(c));
i++;
}
return answer.toString();
}
public String toString() {
return Arrays.toString(ciphers);
}
}