using System; namespace Org.BouncyCastle.Crypto { /// /// Base interface for a key wrapper. /// public interface IKeyWrapper { /// /// The parameter set used to configure this key wrapper. /// object AlgorithmDetails { get; } /// /// Wrap the passed in key data. /// /// The key data to be wrapped. /// an IBlockResult containing the wrapped key data. IBlockResult Wrap(byte[] keyData); } }