assignment 3

This commit is contained in:
2024-12-23 03:12:44 +03:00
parent 16ffb9844f
commit a616052ff5
14 changed files with 192 additions and 0 deletions

View File

@ -0,0 +1,4 @@
public interface Cryptable {
String encrypt(String data) throws Exception;
String decrypt(String cryptedData) throws Exception;
}