- Notifications
You must be signed in to change notification settings - Fork 19.9k
/
Copy pathAutokeyTest.java
36 lines (26 loc) · 798 Bytes
/
AutokeyTest.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
packagecom.thealgorithms.ciphers;
importstaticorg.junit.jupiter.api.Assertions.assertEquals;
importorg.junit.jupiter.api.Test;
classAutokeyCipherTest {
AutokeyautokeyCipher = newAutokey();
@Test
voidautokeyEncryptTest() {
// given
Stringplaintext = "MEET AT DAWN";
Stringkeyword = "QUEEN";
// when
StringcipherText = autokeyCipher.encrypt(plaintext, keyword);
// then
assertEquals("CYIXNFHEPN", cipherText);
}
@Test
voidautokeyDecryptTest() {
// given
Stringciphertext = "CYIX NF HEPN";
Stringkeyword = "QUEEN";
// when
StringplainText = autokeyCipher.decrypt(ciphertext, keyword);
// then
assertEquals("MEETATDAWN", plainText);
}
}