blob: c0492e4a2320594bb43df46ec6c257b515d11a3f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
using System;
namespace Org.BouncyCastle.Tls
{
/// <summary>Processor interface for an SRP identity.</summary>
public interface TlsSrpIdentity
{
byte[] GetSrpIdentity();
byte[] GetSrpPassword();
}
}
|