SID.cs 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* Copyright (C) 2014 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
  2. *
  3. * You can redistribute this program and/or modify it under the terms of
  4. * the GNU Lesser Public License as published by the Free Software Foundation,
  5. * either version 3 of the License, or (at your option) any later version.
  6. */
  7. using System;
  8. using System.Collections.Generic;
  9. using System.Text;
  10. using Utilities;
  11. namespace SMBLibrary
  12. {
  13. /// <summary>
  14. /// [MS-DTYP] 2.4.2.2 - SID (Packet Representation)
  15. /// </summary>
  16. public class SID
  17. {
  18. public byte Revision;
  19. //byte SubAuthorityCount;
  20. public byte[] IdentifierAuthority;
  21. public List<uint> SubAuthority = new List<uint>();
  22. public SID()
  23. {
  24. Revision = 0x01;
  25. IdentifierAuthority = new byte[] { 0x00, 0x00, 0x00, 0x00, 0x00, 0x05 };
  26. }
  27. public SID(byte[] buffer, int offset)
  28. {
  29. Revision = ByteReader.ReadByte(buffer, ref offset);
  30. byte subAuthorityCount = ByteReader.ReadByte(buffer, ref offset);
  31. IdentifierAuthority = ByteReader.ReadBytes(buffer, ref offset, 6);
  32. for (int index = 0; index < subAuthorityCount; index++)
  33. {
  34. uint entry = LittleEndianReader.ReadUInt32(buffer, ref offset);
  35. SubAuthority.Add(entry);
  36. }
  37. }
  38. public void WriteBytes(byte[] buffer, ref int offset)
  39. {
  40. byte subAuthorityCount = (byte)SubAuthority.Count;
  41. ByteWriter.WriteByte(buffer, ref offset, Revision);
  42. ByteWriter.WriteByte(buffer, ref offset, subAuthorityCount);
  43. ByteWriter.WriteBytes(buffer, ref offset, IdentifierAuthority, 6);
  44. for (int index = 0; index < SubAuthority.Count; index++)
  45. {
  46. LittleEndianWriter.WriteUInt32(buffer, ref offset, SubAuthority[index]);
  47. }
  48. }
  49. public int Length
  50. {
  51. get
  52. {
  53. return 8 + SubAuthority.Count * 4;
  54. }
  55. }
  56. }
  57. }