/***************************
 * A simple interface for SBox functionality.
 * Can be implemented with linear functions, non-linear functions
 * or with table lookup
 ***************************/

public interface SBox {
    int substitute(int num);
}