Table of Contents

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

object

Methods

Unwrap(byte[], int, int)

Unwrap the passed in data.

IBlockResult Unwrap(byte[] cipherText, int offset, int length)

Parameters

cipherText byte[]

The array containing the data to be unwrapped.

offset int

The offset into cipherText at which the unwrapped data starts.

length int

The length of the data to be unwrapped.

Returns

IBlockResult

an IBlockResult containing the unwrapped key data.