/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
- // Copyright Jens Granlund 2012.
- // Distributed under the New BSD License.
- // (See accompanying file notice.txt or at
- // http://www.opensource.org/licenses/bsd-license.php)
- // Source: https://bitbucket.org/jens13/cleanzip
- namespace CleanZip.Compression
- {
- public enum WinZipAesKeyStrength
- {
- Aes128 = 1,
- Aes256 = 3
- }
- }