/src/CleanZip.Compression/WinZipAesExtra.cs

https://bitbucket.org/jens13/cleanzip · C# · 46 lines · 34 code · 7 blank · 5 comment · 12 complexity · c0000fee8fe28310a83ae9b585145bd1 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. using System;
  7. namespace CleanZip.Compression
  8. {
  9. public class WinZipAesExtra : IZipExtraField
  10. {
  11. public const ushort HeaderId = 0x9901;
  12. private readonly byte[] _buffer = new byte[] { 0x01, 0x99, 0x07, 0x00, 0x02, 0x00, 0x41, 0x45, 0x03, 0x00, 0x00 };
  13. public WinZipAesExtra(CompressionType compressionMethod)
  14. {
  15. CompressionMethod = compressionMethod;
  16. }
  17. public WinZipAesExtra(byte[] buffer)
  18. {
  19. if (buffer[2] != 0x07) throw new WinZipAesException();
  20. if (buffer[3] != 0x00) throw new WinZipAesException();
  21. if (buffer[5] != 0x00) throw new WinZipAesException();
  22. if (buffer[6] != 0x41) throw new WinZipAesException();
  23. if (buffer[7] != 0x45) throw new WinZipAesException();
  24. if (buffer[10] != 0x00) throw new WinZipAesException();
  25. _buffer[4] = buffer[4];
  26. _buffer[8] = buffer[8];
  27. _buffer[9] = buffer[9];
  28. }
  29. public CompressionType CompressionMethod { get { return (CompressionType)_buffer[9]; } set { _buffer[9] = (byte)value; } }
  30. public WinZipAesType Vendor { get { return (WinZipAesType)_buffer[4]; } set { _buffer[4] = (byte)value; } }
  31. public WinZipAesKeyStrength KeyStrength { get { return (WinZipAesKeyStrength)_buffer[8]; } set { _buffer[8] = (byte)value; } }
  32. public byte[] ToArray()
  33. {
  34. var buffer = new byte[11];
  35. Buffer.BlockCopy(_buffer,0,buffer,0, 11);
  36. return buffer;
  37. }
  38. }
  39. }