#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 unwrapper.
///
public interface IKeyUnwrapper
{
///
/// The parameter set used to configure this key unwrapper.
///
object AlgorithmDetails { get; }
///
/// Unwrap the passed in data.
///
/// The array containing the data to be unwrapped.
/// The offset into cipherText at which the unwrapped data starts.
/// The length of the data to be unwrapped.
/// an IBlockResult containing the unwrapped key data.
IBlockResult Unwrap(byte[] cipherText, int offset, int length);
}
}
#pragma warning restore
#endif