123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- /* Copyright (C) 2017 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
- *
- * You can redistribute this program and/or modify it under the terms of
- * the GNU Lesser Public License as published by the Free Software Foundation,
- * either version 3 of the License, or (at your option) any later version.
- */
- using System;
- using System.Collections.Generic;
- using System.Text;
- using Utilities;
- namespace SMBLibrary.Authentication.GSSAPI
- {
- public enum DerEncodingTag : byte
- {
- ByteArray = 0x04, // Octet String
- ObjectIdentifier = 0x06,
- Enum = 0x0A,
- GeneralString = 0x1B,
- Sequence = 0x30,
- }
- public class DerEncodingHelper
- {
- public static int ReadLength(byte[] buffer, ref int offset)
- {
- int length = ByteReader.ReadByte(buffer, ref offset);
- if (length >= 0x80)
- {
- int lengthFieldSize = (length & 0x7F);
- byte[] lengthField = ByteReader.ReadBytes(buffer, ref offset, lengthFieldSize);
- length = 0;
- foreach (byte value in lengthField)
- {
- length *= 256;
- length += value;
- }
- }
- return length;
- }
- public static void WriteLength(byte[] buffer, ref int offset, int length)
- {
- if (length >= 0x80)
- {
- List<byte> values = new List<byte>();
- do
- {
- byte value = (byte)(length % 256);
- values.Add(value);
- length = length / 256;
- }
- while (length > 0);
- values.Reverse();
- byte[] lengthField = values.ToArray();
- ByteWriter.WriteByte(buffer, ref offset, (byte)(0x80 | lengthField.Length));
- ByteWriter.WriteBytes(buffer, ref offset, lengthField);
- }
- else
- {
- ByteWriter.WriteByte(buffer, ref offset, (byte)length);
- }
- }
- public static int GetLengthFieldSize(int length)
- {
- if (length >= 0x80)
- {
- int result = 1;
- do
- {
- length = length / 256;
- result++;
- }
- while(length > 0);
- return result;
- }
- else
- {
- return 1;
- }
- }
- public static byte[] EncodeGeneralString(string value)
- {
- // We do not support character-set designation escape sequences
- return ASCIIEncoding.ASCII.GetBytes(value);
- }
- public static string DecodeGeneralString(byte[] bytes)
- {
- // We do not support character-set designation escape sequences
- return ASCIIEncoding.ASCII.GetString(bytes);
- }
- }
- }
|