Interface IKeyUnwrapper
- Namespace
- Org.BouncyCastle.Crypto
- Assembly
- BouncyCastle.Cryptography.dll
Base interface for a key unwrapper.
public interface IKeyUnwrapper
Properties
AlgorithmDetails
The parameter set used to configure this key unwrapper.
object AlgorithmDetails { get; }
Property Value
Methods
Unwrap(byte[], int, int)
Unwrap the passed in data.
IBlockResult Unwrap(byte[] cipherText, int offset, int length)
Parameters
cipherTextbyte[]The array containing the data to be unwrapped.
offsetintThe offset into cipherText at which the unwrapped data starts.
lengthintThe length of the data to be unwrapped.
Returns
- IBlockResult
an IBlockResult containing the unwrapped key data.