public static PaPacOptions Parse(PA_DATA data)
        {
            if (data.padata_type.Value != (long)PaDataType.PA_PAC_OPTION)
            {
                throw new Exception();
            }
            KERB_PA_PAC_OPTIONS paPacOptions = new KERB_PA_PAC_OPTIONS();

            paPacOptions.BerDecode(new Asn1DecodingBuffer(data.padata_value.ByteArrayValue));
            throw new NotImplementedException();//need to convert from bytd[] to integer
        }
 public static PaPacOptions Parse(PA_DATA data)
 {
     if (data.padata_type.Value != (long)PaDataType.PA_PAC_OPTION)
         throw new Exception();
     KERB_PA_PAC_OPTIONS paPacOptions = new KERB_PA_PAC_OPTIONS();
     paPacOptions.BerDecode(new Asn1DecodingBuffer(data.padata_value.ByteArrayValue));
     throw new NotImplementedException();//need to convert from bytd[] to integer
 }