NetBiosTests.cs 1.3 KB

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using SMBLibrary.NetBios;
  5. using Utilities;
  6. namespace SMBLibrary
  7. {
  8. public class NetBiosTests
  9. {
  10. public static void Test()
  11. {
  12. byte[] buffer = new byte[] { 0x20, 0x46, 0x47, 0x45, 0x4e, 0x44, 0x4a, 0x43, 0x41, 0x43, 0x41, 0x43, 0x41, 0x43, 0x41, 0x43, 0x41, 0x43, 0x41, 0x43, 0x41, 0x43, 0x41, 0x43, 0x41, 0x43, 0x41, 0x43, 0x41, 0x43, 0x41, 0x43, 0x41, 0x00 };
  13. int offset = 0;
  14. string name = NetBiosUtils.DecodeName(buffer, ref offset);
  15. byte[] encodedName = NetBiosUtils.EncodeName(name, String.Empty);
  16. bool success = ByteUtils.AreByteArraysEqual(buffer, encodedName);
  17. }
  18. public static void Test2()
  19. {
  20. byte[] buffer = new byte[] { 0x20, 0x46, 0x47, 0x45, 0x4e, 0x44, 0x4a, 0x43, 0x41, 0x43, 0x41, 0x43, 0x41, 0x43, 0x41, 0x43, 0x41, 0x43, 0x41, 0x43, 0x41, 0x43, 0x41, 0x43, 0x41, 0x43, 0x41, 0x43, 0x41, 0x43, 0x41, 0x41, 0x41, 0x00 };
  21. int offset = 0;
  22. string name = NetBiosUtils.DecodeName(buffer, ref offset);
  23. byte[] encodedName = NetBiosUtils.EncodeName(name, String.Empty);
  24. bool success = ByteUtils.AreByteArraysEqual(buffer, encodedName);
  25. }
  26. }
  27. }