CipherMode.cs 485 B

123456789101112131415161718192021222324
  1. //
  2. // System.Security.Cryptography CipherMode enumeration
  3. //
  4. // Authors:
  5. // Matthew S. Ford ([email protected])
  6. //
  7. // Copyright 2001 by Matthew S. Ford.
  8. //
  9. namespace System.Security.Cryptography {
  10. /// <summary>
  11. /// Block cipher modes of operation.
  12. /// </summary>
  13. public enum CipherMode {
  14. CBC, // Cipher Block Chaining
  15. CFB, // Cipher Feedback
  16. CTS, // Cipher Text Stealing
  17. ECB, // Electronic Codebook
  18. OFB // Output Feedback
  19. }
  20. }