| org.bouncycastle.crypto.Wrapper
All known Subclasses: org.bouncycastle.crypto.engines.RFC3211WrapEngine, org.bouncycastle.crypto.engines.RC2WrapEngine, org.bouncycastle.crypto.engines.RFC3394WrapEngine, org.bouncycastle.crypto.engines.DESedeWrapEngine,
Wrapper | public interface Wrapper (Code) | | |
Method Summary | |
public String | getAlgorithmName() Return the name of the algorithm the wrapper implements. | public void | init(boolean forWrapping, CipherParameters param) | public byte[] | unwrap(byte[] in, int inOff, int inLen) | public byte[] | wrap(byte[] in, int inOff, int inLen) |
getAlgorithmName | public String getAlgorithmName()(Code) | | Return the name of the algorithm the wrapper implements.
the name of the algorithm the wrapper implements. |
wrap | public byte[] wrap(byte[] in, int inOff, int inLen)(Code) | | |
|
|