亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? ber.java

?? snmp4j 1.8.2版 The org.snmp4j classes are capable of creating, sending, and receiving SNMPv1/v2c/v3
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
/*_############################################################################
  _## 
  _##  SNMP4J - BER.java  
  _## 
  _##  Copyright 2003-2007  Frank Fock and Jochen Katz (SNMP4J.org)
  _##  
  _##  Licensed under the Apache License, Version 2.0 (the "License");
  _##  you may not use this file except in compliance with the License.
  _##  You may obtain a copy of the License at
  _##  
  _##      http://www.apache.org/licenses/LICENSE-2.0
  _##  
  _##  Unless required by applicable law or agreed to in writing, software
  _##  distributed under the License is distributed on an "AS IS" BASIS,
  _##  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  _##  See the License for the specific language governing permissions and
  _##  limitations under the License.
  _##  
  _##########################################################################*/





package org.snmp4j.asn1;

import java.io.OutputStream;
import java.io.IOException;

/**
 * The BER class provides utility methods for the BER encoding and decoding.
 *
 * @author Jochen Katz & Frank Fock
 * @version 1.7.4
 */
public class BER {

  public static final byte ASN_BOOLEAN = 0x01;
  public static final byte ASN_INTEGER = 0x02;
  public static final byte ASN_BIT_STR = 0x03;
  public static final byte ASN_OCTET_STR = 0x04;
  public static final byte ASN_NULL = 0x05;
  public static final byte ASN_OBJECT_ID = 0x06;
  public static final byte ASN_SEQUENCE = 0x10;
  public static final byte ASN_SET = 0x11;
  public static final byte ASN_UNIVERSAL = 0x00;
  public static final byte ASN_APPLICATION = 0x40;
  public static final byte ASN_CONTEXT = (byte)0x80;
  public static final byte ASN_PRIVATE = (byte)0xC0;
  public static final byte ASN_PRIMITIVE = (byte)0x00;
  public static final byte ASN_CONSTRUCTOR = (byte)0x20;

  public static final byte ASN_LONG_LEN = (byte)0x80;
  public static final byte ASN_EXTENSION_ID = (byte)0x1F;
  public static final byte ASN_BIT8 = (byte)0x80;

  public static final byte INTEGER = ASN_UNIVERSAL | 0x02;
  public static final byte INTEGER32 = ASN_UNIVERSAL | 0x02;
  public static final byte BITSTRING = ASN_UNIVERSAL | 0x03;
  public static final byte OCTETSTRING = ASN_UNIVERSAL | 0x04;
  public static final byte NULL = ASN_UNIVERSAL | 0x05;
  public static final byte OID = ASN_UNIVERSAL | 0x06;
  public static final byte SEQUENCE = ASN_CONSTRUCTOR | 0x10;

  public static final byte IPADDRESS = ASN_APPLICATION | 0x00;
  public static final byte COUNTER = ASN_APPLICATION | 0x01;
  public static final byte COUNTER32 = ASN_APPLICATION | 0x01;
  public static final byte GAUGE = ASN_APPLICATION | 0x02;
  public static final byte GAUGE32 = ASN_APPLICATION | 0x02;
  public static final byte TIMETICKS = ASN_APPLICATION | 0x03;
  public static final byte OPAQUE = ASN_APPLICATION | 0x04;
  public static final byte COUNTER64 = ASN_APPLICATION | 0x06;

  public static final int NOSUCHOBJECT = 0x80;
  public static final int NOSUCHINSTANCE = 0x81;
  public static final int ENDOFMIBVIEW = 0x82;

  private static final int LENMASK = 0x0ff;
  public static final int MAX_OID_LENGTH = 127;

  private static boolean checkSequenceLength = true;
  private static boolean checkValueLength = true;

  /**
   * The <code>MutableByte</code> class serves for exchanging type information
   * from the various decode* methods.
   *
   * @author Frank Fock
   * @version 1.0
   */
  public static class MutableByte {
    byte value = 0;

    public MutableByte() { }

    public MutableByte(byte value) {
      setValue(value);
    }

    public void setValue(byte value) {
      this.value = value;
    }

    public byte getValue() {
      return value;
    }
  }

  /**
   * Encodes an ASN.1 header for an object with the ID and
   * length specified.
   * @param os
   *    an <code>OutputStream</code> to which the header is encoded.
   * @param type
   *    the type of the ASN.1 object. Must be < 30, i.e. no extension octets.
   * @param length
   *    the length of the object. The maximum length is 0xFFFFFFFF;
   * @throws IOException
   */
  public static final void encodeHeader(OutputStream os, int type, int length)
      throws IOException
  {
    os.write(type);
    encodeLength(os, length);
  }

  /**
   * Encodes an ASN.1 header for an object with the ID and
   * length specified with a fixed length of the encoded length as supplied.
   * @param os
   *    an <code>OutputStream</code> to which the header is encoded.
   * @param type
   *    the type of the ASN.1 object. Must be < 30, i.e. no extension octets.
   * @param length
   *    the length of the object. The maximum length is 0xFFFFFFFF;
   * @param numBytesLength
   *    the number of bytes used to encode the length of the length.
   * @throws IOException
   */
  public static final void encodeHeader(OutputStream os, int type, int length,
                                        int numBytesLength)
      throws IOException
  {
    os.write(type);
    encodeLength(os, length, numBytesLength);
  }

  /**
   * Compute the space needed to encode the length.
   *
   * @param length
   *    Length to encode
   * @return
   *    the count of bytes needed to encode the value <code>length</code>
   */
  public static final int getBERLengthOfLength(int length) {
    if (length < 0) {
      return 5;
    }
    else if (length < 0x80){
      return 1;
    }
    else if (length <= 0xFF){
      return 2;
    }
    else if (length <= 0xFFFF) { /* 0xFF < length <= 0xFFFF */
      return 3;
    }
    else if (length <= 0xFFFFFF) { /* 0xFFFF < length <= 0xFFFFFF */
      return 4;
    }
    return 5;
  }

  /**
   * Encodes the length of an ASN.1 object.
   * @param os
   *   an <code>OutputStream</code> to which the length is encoded.
   * @param length
   *    the length of the object. The maximum length is 0xFFFFFFFF;
   * @throws IOException
   */
  public static final void encodeLength(OutputStream os, int length)
      throws IOException
  {
    if (length < 0) {
      os.write(0x04 | ASN_LONG_LEN);
      os.write((length >> 24) & 0xFF);
      os.write((length >> 16) & 0xFF);
      os.write((length >> 8) & 0xFF);
      os.write(length & 0xFF);
    }
    else if (length < 0x80){
      os.write(length);
    }
    else if (length <= 0xFF){
      os.write((0x01 | ASN_LONG_LEN));
      os.write(length);
    }
    else if (length <= 0xFFFF) { /* 0xFF < length <= 0xFFFF */
      os.write(0x02 | ASN_LONG_LEN);
      os.write((length >> 8) & 0xFF);
      os.write(length & 0xFF);
    }
    else if (length <= 0xFFFFFF) { /* 0xFFFF < length <= 0xFFFFFF */
      os.write(0x03 | ASN_LONG_LEN);
      os.write((length >> 16) & 0xFF);
      os.write((length >> 8) & 0xFF);
      os.write(length & 0xFF);
    }
    else {
      os.write(0x04 | ASN_LONG_LEN);
      os.write((length >> 24) & 0xFF);
      os.write((length >> 16) & 0xFF);
      os.write((length >> 8) & 0xFF);
      os.write(length & 0xFF);
    }
  }

  /**
   * Encodes the length of an ASN.1 object.
   * @param os
   *   an <code>OutputStream</code> to which the length is encoded.
   * @param length
   *    the length of the object. The maximum length is 0xFFFFFFFF;
   * @param numLengthBytes
   *    the number of bytes to be used to encode the length using the long
   *    form.
   * @throws IOException
   */
  public static final void encodeLength(OutputStream os, int length,
                                        int numLengthBytes)
      throws IOException
  {
    os.write((numLengthBytes | ASN_LONG_LEN));
    for (int i=(numLengthBytes-1)*8; i>=0; i-=8) {
      os.write(((length >> i) & 0xFF));
    }
  }

  /**
   * Encode a signed integer.
   * @param os
   *    an <code>OutputStream</code> to which the length is encoded.
   * @param type
   *    the tag type for the integer (typically 0x02)
   * @param value
   *    the integer value to encode.
   * @throws IOException
   */
  public static final void encodeInteger(OutputStream os, byte type, int value)
      throws IOException
  {
    int integer = value;
    int mask;
    int intsize = 4;

    /*
     * Truncate "unnecessary" bytes off of the most significant end of this
     * 2's complement integer.  There should be no sequence of 9
     * consecutive 1's or 0's at the most significant end of the
     * integer.
     */
    mask = 0x1FF << ((8 * 3) - 1);
    /* mask is 0xFF800000 on a big-endian machine */
    while((((integer & mask) == 0) || ((integer & mask) == mask))
          && intsize > 1){
      intsize--;
      integer <<= 8;
    }
    encodeHeader(os, type, intsize);
    mask = 0xFF << (8 * 3);
    /* mask is 0xFF000000 on a big-endian machine */
    while ((intsize--) > 0){
      os.write(((integer & mask) >> (8 * 3)));
      integer <<= 8;
    }
  }

  /**
   * Encode an unsigned integer.
   * ASN.1 integer ::= 0x02 asnlength byte {byte}*
   * @param os
   *    an <code>OutputStream</code> to which the length is encoded.
   * @param type
   *    the tag type for the integer (typically 0x02)
   * @param value
   *    the integer value to encode.
   * @throws IOException
   */
  public static final void encodeUnsignedInteger(OutputStream os, byte type, long value)
      throws IOException
  {
    // figure out the len
    int len = 1;
    if ((( value >> 24) & LENMASK) != 0) {
      len = 4;
    }
    else if ((( value >> 16) & LENMASK) !=0) {
      len = 3;
    }
    else if ((( value >> 8) & LENMASK) !=0) {
      len = 2;
    }
    // check for 5 byte len where first byte will be
    // a null
    if ((( value >> (8 * (len -1))) & 0x080) !=0)	{
      len++;
    }

    // build up the header
    encodeHeader(os, type, len);  // length of BER encoded item

    // special case, add a null byte for len of 5
    if (len == 5) {
      os.write(0);
      for (int x=1; x<len; x++) {
        os.write((int) (value >> (8 * (4 - x) & LENMASK)));
      }
    }
    else
    {
      for (int x=0; x<len; x++) {
        os.write((int) (value >> (8 * ((len - 1) - x) & LENMASK)));
      }
    }
  }

  /**
   * Encode an ASN.1 octet string filled with the supplied input string.
   * @param os
   *    an <code>OutputStream</code> to which the length is encoded.
   * @param type
   *    the tag type for the integer (typically 0x02)
   * @param string
   *    the <code>byte</code> array containing the octet string value.
   * @throws IOException
   */
  public static final void encodeString(OutputStream os, byte type, byte[] string)
      throws IOException
  {
    /*
    * ASN.1 octet string ::= primstring | cmpdstring
    * primstring ::= 0x04 asnlength byte {byte}*
    * cmpdstring ::= 0x24 asnlength string {string}*
    * This code will never send a compound string.
    */
    encodeHeader(os, type, string.length);
    // fixed
    os.write(string);
  }

  /**
   * Encode an ASN.1 header for a sequence with the ID and length specified.
   * This only works on data types < 30, i.e. no extension octets.
   * The maximum length is 0xFFFF;
   *
   * @param os
   *    an <code>OutputStream</code> to which the length is encoded.
   * @param type
   *    the tag type for the integer (typically 0x02)
   * @param length
   *    the length of the sequence to encode.
   * @throws IOException
   */
  public static final void encodeSequence(OutputStream os, byte type, int length)
      throws IOException
  {
    os.write(type);
    encodeLength(os, length);
  }

  /**
   * Gets the payload length in bytes of the BER encoded OID value.
   * @param value
   *    an array of unsigned integer values representing an object identifier.
   * @return
   *    the BER encoded length of the OID without header and length.
   */
  public static final int getOIDLength(int[] value) {
    int length = 1; // for first 2 subids
    for (int i = 2; i < value.length; i++) {
      long v = value[i] & 0xFFFFFFFFL;
      if (v < 0x80) { //  7 bits long subid
        length += 1;
      }
      else if (v < 0x4000) {  // 14 bits long subid
        length += 2;
      }
      else if (v < 0x200000) { // 21 bits long subid
        length += 3;
      }
      else if (v < 0x10000000) { // 28 bits long subid
        length += 4;
      }
      else {                     // 32 bits long subid
        length += 5;
      }
    }
    return length;
  }

 /**
  * Encode an ASN.1 oid filled with the supplied oid value.
  *
  * @param os
  *    an <code>OutputStream</code> to which the length is encoded.
  * @param type
  *    the tag type for the integer (typically 0x06)
  * @param oid
  *    the <code>int</code> array containing the OID value.
  * @throws IOException
  */
  public static final void encodeOID(OutputStream os, byte type, int[] oid)
      throws IOException
  {
    /*
     * ASN.1 objid ::= 0x06 asnlength subidentifier {subidentifier}*
     * subidentifier ::= {leadingbyte}* lastbyte
     * leadingbyte ::= 1 7bitvalue
     * lastbyte ::= 0 7bitvalue
     */
    encodeHeader(os, type, getOIDLength(oid));

    int encodedLength = oid.length;
    int rpos = 0;

    if (oid.length < 2){
      os.write(0);
      encodedLength = 0;
    }
    else {
      os.write(((oid[1] + (oid[0] * 40)) & 0xFF));
      encodedLength -= 2;
      rpos = 2;
    }

    while (encodedLength-- > 0){
      long subid = (oid[rpos++] & 0xFFFFFFFFL);
      if (subid < 127) {
        os.write((int)subid & 0xFF);
      }
      else {
        long mask = 0x7F; /* handle subid == 0 case */
        long bits = 0;

        /* testmask *MUST* !!!! be of an unsigned type */
        for (long testmask = 0x7F, testbits = 0; testmask != 0;
             testmask <<= 7, testbits += 7) {
          if ((subid & testmask) > 0) {	/* if any bits set */
            mask = testmask;
            bits = testbits;
          }
        }
        /* mask can't be zero here */
        for (; mask != 0x7F; mask >>= 7, bits -= 7){
          /* fix a mask that got truncated above */
          if (mask == 0x1E00000) {
            mask = 0xFE00000;
          }
          os.write((int)(((subid & mask) >> bits) | ASN_BIT8));
        }
        os.write((int)(subid & mask));

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩精品久久久久久| 精品国产麻豆免费人成网站| 在线观看视频一区二区欧美日韩 | 日韩一区二区免费视频| 日韩三级高清在线| 国产视频视频一区| 亚洲精品成人天堂一二三| 偷拍一区二区三区四区| 激情深爱一区二区| 91免费国产在线| 欧美久久一二三四区| 久久婷婷成人综合色| 亚洲女与黑人做爰| 奇米综合一区二区三区精品视频| 国产精品资源在线观看| 99精品桃花视频在线观看| 欧美日韩国产高清一区二区 | 国内精品伊人久久久久av一坑| 国产成人自拍高清视频在线免费播放| 99久久99久久久精品齐齐| 欧美日韩精品一区二区三区四区| 久久综合狠狠综合| 一区二区视频免费在线观看| 麻豆精品在线看| 91丨porny丨中文| 欧美电影免费观看高清完整版在| 国产精品对白交换视频| 久久国内精品自在自线400部| 不卡的av中国片| 日韩视频免费观看高清完整版在线观看| 久久色视频免费观看| 亚洲综合成人网| 国产成人午夜片在线观看高清观看| 欧洲亚洲精品在线| 欧美国产一区二区在线观看 | 欧美一级国产精品| 亚洲丝袜另类动漫二区| 久草精品在线观看| 在线免费不卡电影| 欧美激情一二三区| 精品亚洲成av人在线观看| 在线观看www91| 中文字幕在线一区二区三区| 九九热在线视频观看这里只有精品| 色狠狠色噜噜噜综合网| 国产欧美日韩另类一区| 男男视频亚洲欧美| 欧美中文字幕一区二区三区| 中文字幕精品一区二区精品绿巨人 | 蜜臀av亚洲一区中文字幕| 91亚洲午夜精品久久久久久| 久久网站最新地址| 美女视频网站久久| 欧美日韩午夜影院| 亚洲精品一二三四区| 成人小视频在线| 2020国产精品| 久久精品国产在热久久| 欧美另类高清zo欧美| 亚洲精品免费视频| 99久久精品久久久久久清纯| 久久一日本道色综合| 美女精品自拍一二三四| 欧美体内she精视频| 亚洲三级理论片| 成人国产在线观看| 国产清纯在线一区二区www| 狠狠狠色丁香婷婷综合久久五月| 欧美一区二区三区啪啪| 香蕉久久一区二区不卡无毒影院| 色94色欧美sute亚洲线路二| 中文字幕日本不卡| 成人av在线一区二区三区| 国模一区二区三区白浆| 欧美一级黄色大片| 美女性感视频久久| 欧美成人激情免费网| 男人的j进女人的j一区| 成人av在线播放网站| 在线免费不卡电影| 亚洲国产综合色| 欧美日韩一区二区三区四区 | 97aⅴ精品视频一二三区| 国产精品全国免费观看高清| 丁香一区二区三区| 国产精品天美传媒| av日韩在线网站| 中文字幕亚洲视频| 一本久久a久久免费精品不卡| 亚洲女爱视频在线| 欧美三日本三级三级在线播放| 亚洲午夜一区二区| 制服丝袜亚洲色图| 蜜桃av一区二区三区| 精品国产免费久久| www.欧美.com| 亚洲在线免费播放| 日韩一区二区三区视频在线| 久久国产精品区| 欧美激情中文不卡| 91国偷自产一区二区三区观看 | 欧美精品粉嫩高潮一区二区| 蜜臀久久久久久久| 久久久精品国产免大香伊| 成a人片国产精品| 亚洲少妇屁股交4| 欧美日韩综合色| 久久超碰97中文字幕| 国产欧美精品一区二区三区四区 | 久久蜜桃av一区精品变态类天堂| 国产成人aaa| 一区二区理论电影在线观看| 欧美精品色综合| 国产精品一区二区久久不卡| 最新国产成人在线观看| 在线电影院国产精品| 国产一区二区美女诱惑| 亚洲欧美激情在线| 欧美一区二区三区免费大片| 粉嫩一区二区三区性色av| 一区二区久久久久久| 国产高清在线精品| 亚洲日本青草视频在线怡红院| 91.xcao| 国产成+人+日韩+欧美+亚洲| 亚洲高清在线精品| 国产日韩精品视频一区| 欧美探花视频资源| 国产裸体歌舞团一区二区| 中文字幕欧美一| 欧美美女喷水视频| 国产成人综合亚洲网站| 夜夜亚洲天天久久| 日韩精品一区二区三区视频播放 | 亚洲国产岛国毛片在线| 91麻豆免费视频| 午夜欧美2019年伦理| 欧美精品一区二区精品网| 9人人澡人人爽人人精品| 亚洲午夜电影网| 久久亚洲一区二区三区明星换脸| 91亚洲精品一区二区乱码| 精品一区二区三区免费观看| 国产精品第13页| 日韩三级中文字幕| gogogo免费视频观看亚洲一| 一区二区三区欧美视频| 久久久精品国产99久久精品芒果| 色噜噜狠狠成人网p站| 精品综合免费视频观看| 亚洲欧美日韩综合aⅴ视频| 欧美巨大另类极品videosbest| 99久久综合精品| 日本欧美在线看| 亚洲免费在线观看| 精品久久久久久久久久久院品网| 色综合久久久久久久久久久| 精品综合免费视频观看| 亚洲精品国产无天堂网2021| 久久综合久久99| 欧美日韩免费电影| 欧美亚洲免费在线一区| 国产白丝精品91爽爽久久| 亚洲国产你懂的| 国产精品国产三级国产普通话三级| 7878成人国产在线观看| 91麻豆国产在线观看| 国产伦理精品不卡| 99精品欧美一区二区三区小说| 在线观看91精品国产麻豆| 国产调教视频一区| 欧美一区二区三区婷婷月色| 欧美色综合网站| 成人动漫在线一区| 日韩精品一区二| 色综合久久综合| 99久久精品免费看国产 | 91蜜桃在线观看| 国产主播一区二区| 青娱乐精品视频| 亚洲成人一区在线| 亚洲综合一二区| 国产精品不卡在线| 国产日韩欧美在线一区| 精品国产乱码久久久久久夜甘婷婷| 91精品国产综合久久蜜臀| 色狠狠av一区二区三区| 成人app网站| 成人中文字幕合集| 久久电影网站中文字幕| 狠狠色狠狠色综合系列| 青娱乐精品视频在线| 午夜天堂影视香蕉久久| 亚洲乱码国产乱码精品精可以看| 亚洲素人一区二区| 成人免费一区二区三区视频| 日本一区二区电影| 久久综合久久综合亚洲| 国产三级精品三级在线专区| 久久老女人爱爱|