We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
main
1 parent e44c110 commit bf41f22Copy full SHA for bf41f22
src/main/java/com/thealgorithms/ciphers/AffineCipher.java
@@ -84,16 +84,4 @@ static String decryptCipher(String cipher) {
84
85
return msg.toString();
86
}
87
-
88
- // Driver code
89
- public static void main(String[] args) {
90
- String msg = "AFFINE CIPHER";
91
92
- // Calling encryption function
93
- String cipherText = encryptMessage(msg.toCharArray());
94
- System.out.println("Encrypted Message is : " + cipherText);
95
96
- // Calling Decryption function
97
- System.out.println("Decrypted Message is: " + decryptCipher(cipherText));
98
- }
99
0 commit comments