using System; namespace Org.BouncyCastle.Crypto.Tls { public interface TlsPskIdentityManager { byte[] GetHint(); byte[] GetPsk(byte[] identity); } }