#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR) #pragma warning disable using System; namespace BestHTTP.SecureProtocol.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); } } #pragma warning restore #endif