| 123456789101112131415161718192021 |
- //
- // System.Security.Cryptography PaddingMode enumeration
- //
- // Authors:
- // Matthew S. Ford ([email protected])
- //
- // Copyright 2001 by Matthew S. Ford.
- //
- namespace System.Security.Cryptography {
-
- /// <summary>
- /// How to pad the message processed by block ciphers when they don't come out to the being the size of the block.
- /// </summary>
- public enum PaddingMode {
- PKCS7, // Each byte contains the value of the number of padding bytes.
- Zeros // Append zeros to the message.
- }
- }
-
|