wrapper.java

来自「内容:基于jdk1.4的加密算法的具体实现」· Java 代码 · 共 19 行

JAVA
19
字号
package org.bouncycastle.crypto;public interface Wrapper{    public void init(boolean forWrapping, CipherParameters param);    /**     * Return the name of the algorithm the wrapper implements.     *     * @return the name of the algorithm the wrapper implements.     */    public String getAlgorithmName();    public byte[] wrap(byte[] in, int inOff, int inLen);    public byte[] unwrap(byte[] in, int inOff, int inLen)        throws InvalidCipherTextException;}

⌨️ 快捷键说明

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