IKeyExchangedAllowed.cs 339 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Renci.SshNet.Messages.Transport
  6. {
  7. /// <summary>
  8. /// Indicates that message that implement this interface is allowed during key exchange phase
  9. /// </summary>
  10. public interface IKeyExchangedAllowed
  11. {
  12. }
  13. }