1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
using System; namespace Org.BouncyCastle.Tls { /// <summary>Processor interface for a PSK identity.</summary> public interface TlsPskIdentity { void SkipIdentityHint(); void NotifyIdentityHint(byte[] psk_identity_hint); byte[] GetPskIdentity(); byte[] GetPsk(); } }