Add the Caesar decrypted interface for Java.

This commit is contained in:
2023-10-05 20:07:43 +03:00
parent 9c1a8b1bae
commit 0a87ab9e91
@@ -0,0 +1,6 @@
package cipher_analytical_machine.ciphers.caesar;
public interface Decrypted {
String decrypt(String message, int key, String symbols);
}