Package org.bouncycastle.crypto.engines
Class RFC5649WrapEngine
- java.lang.Object
-
- org.bouncycastle.crypto.engines.RFC5649WrapEngine
-
- All Implemented Interfaces:
Wrapper
- Direct Known Subclasses:
AESWrapPadEngine,ARIAWrapPadEngine
public class RFC5649WrapEngine extends java.lang.Object implements Wrapper
An implementation of the AES Key Wrap with Padding specification as described in RFC 5649.For details on the specification see: https://tools.ietf.org/html/rfc5649
-
-
Constructor Summary
Constructors Constructor Description RFC5649WrapEngine(BlockCipher engine)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetAlgorithmName()Return the name of the algorithm the wrapper implements.voidinit(boolean forWrapping, CipherParameters param)byte[]unwrap(byte[] in, int inOff, int inLen)byte[]wrap(byte[] in, int inOff, int inLen)
-
-
-
Constructor Detail
-
RFC5649WrapEngine
public RFC5649WrapEngine(BlockCipher engine)
-
-
Method Detail
-
init
public void init(boolean forWrapping, CipherParameters param)
-
getAlgorithmName
public java.lang.String getAlgorithmName()
Description copied from interface:WrapperReturn the name of the algorithm the wrapper implements.- Specified by:
getAlgorithmNamein interfaceWrapper- Returns:
- the name of the algorithm the wrapper implements.
-
unwrap
public byte[] unwrap(byte[] in, int inOff, int inLen) throws InvalidCipherTextException- Specified by:
unwrapin interfaceWrapper- Throws:
InvalidCipherTextException
-
-