/src/CleanZip.Compression/WInZipAesKeyStrength.cs

https://bitbucket.org/jens13/cleanzip · C# · 14 lines · 8 code · 1 blank · 5 comment · 0 complexity · 089827910c0ff819bb7b2d58a7da194f MD5 · raw file

  1. // Copyright Jens Granlund 2012.
  2. // Distributed under the New BSD License.
  3. // (See accompanying file notice.txt or at
  4. // http://www.opensource.org/licenses/bsd-license.php)
  5. // Source: https://bitbucket.org/jens13/cleanzip
  6. namespace CleanZip.Compression
  7. {
  8. public enum WinZipAesKeyStrength
  9. {
  10. Aes128 = 1,
  11. Aes256 = 3
  12. }
  13. }