ICipherBuilderWithKey
A cipher builder that can also return the key it was initialized with.
namespace Org.BouncyCastle.Crypto
{
public interface ICipherBuilderWithKey : ICipherBuilder
{
ICipherParameters Key { get; }
}
}