TransformMode.cs 486 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Renci.SshNet.Security.Cryptography
  6. {
  7. /// <summary>
  8. /// Specifies transformation modes
  9. /// </summary>
  10. public enum TransformMode
  11. {
  12. /// <summary>
  13. /// Specifies encryption mode
  14. /// </summary>
  15. Encrypt = 0,
  16. /// <summary>
  17. /// Specifies decryption mode
  18. /// </summary>
  19. Decrypt = 1
  20. }
  21. }