/** Encryption.java -- Interface that defines what operations we want * in order to support encryption. Namely, we need to have a way * to encrypt and decrypt data (Strings). */ public interface Encryption { public void encrypt(String s); public void decrypt(String s); }