squaremode.java

来自「一个用java写的SQUARE算法」· Java 代码 · 共 9 行

JAVA
9
字号
public interface SquareMode {
    public void setKey (byte[] key);
    public void setIV (byte[] iv);
    //public void encrypt (byte in[], int in_offset, byte out[], int out_offset, int length);
    //public void decrypt (byte in[], int in_offset, byte out[], int out_offset, int length);
    public void encrypt (byte buf[], int offset, int length);
    public void decrypt (byte buf[], int offset, int length);
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?