mscorlib(4.0.0.0) API with additions
CipherMode.cs
2 
4 {
7  [ComVisible(true)]
8  public enum CipherMode
9  {
11  CBC = 1,
13  ECB,
15  OFB,
17  CFB,
19  CTS
20  }
21 }
The Electronic Codebook (ECB) mode encrypts each block individually. Any blocks of plain text that ar...
Definition: __Canon.cs:3
The Cipher Block Chaining (CBC) mode introduces feedback. Before each plain text block is encrypted,...
The Cipher Feedback (CFB) mode processes small increments of plain text into cipher text,...
The Output Feedback (OFB) mode processes small increments of plain text into cipher text instead of p...
CipherMode
Specifies the block cipher mode to use for encryption.
Definition: CipherMode.cs:8
The Cipher Text Stealing (CTS) mode handles any length of plain text and produces cipher text whose l...
Specifies that the class can be serialized.