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