using System; namespace Org.BouncyCastle.Tls { /// Processor interface for an SRP identity. public interface TlsSrpIdentity { byte[] GetSrpIdentity(); byte[] GetSrpPassword(); } }