DataRepresentationFormat.cs 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. namespace SMBLibrary.RPC
  9. {
  10. // See DCE 1.1: Remote Procedure Call, Chapter 14.1 - Data Representation Format Label
  11. public enum CharacterFormat : byte
  12. {
  13. ASCII = 0x00,
  14. EBCDIC = 0x01,
  15. }
  16. public enum ByteOrder : byte
  17. {
  18. BigEndian = 0x00,
  19. LittleEndian = 0x01,
  20. }
  21. public enum FloatingPointRepresentation : byte
  22. {
  23. IEEE = 0x00,
  24. VAX = 0x01,
  25. Cray = 0x02,
  26. IBM = 0x03,
  27. }
  28. public struct DataRepresentationFormat // uint
  29. {
  30. public CharacterFormat CharacterFormat;
  31. public ByteOrder ByteOrder;
  32. public FloatingPointRepresentation FloatingPointRepresentation;
  33. public DataRepresentationFormat(byte[] buffer, int offset)
  34. {
  35. CharacterFormat = (CharacterFormat)(buffer[offset + 0] & 0x0F);
  36. ByteOrder = (ByteOrder)(buffer[offset + 0] >> 4);
  37. FloatingPointRepresentation = (FloatingPointRepresentation)(buffer[offset + 1]);
  38. }
  39. public void WriteBytes(byte[] buffer, int offset)
  40. {
  41. buffer[offset + 0] = (byte)CharacterFormat;
  42. buffer[offset + 0] |= (byte)((byte)ByteOrder << 4);
  43. buffer[offset + 1] = (byte)FloatingPointRepresentation;
  44. }
  45. }
  46. }