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

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

?? ber.java

?? snmp hibernate 源碼, 類似hibernate的映射.
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
/*_############################################################################
  _##
  _##  SNMP4J - BER.java
  _##
  _##  Copyright 2003-2006  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一区二区三区免费野_久草精品视频
亚洲天堂网中文字| 激情av综合网| 韩国v欧美v亚洲v日本v| 91啪在线观看| 久久精品视频免费| 视频精品一区二区| 色欧美片视频在线观看| 精品91自产拍在线观看一区| 亚洲精品美国一| 国产+成+人+亚洲欧洲自线| 欧美人与性动xxxx| 樱桃视频在线观看一区| 国产精品亚洲一区二区三区在线 | 91精品欧美一区二区三区综合在| 国产清纯白嫩初高生在线观看91| 亚洲午夜在线电影| 色综合久久九月婷婷色综合| 国产日韩成人精品| 黑人巨大精品欧美一区| 欧美日韩激情一区二区| 亚洲综合另类小说| 色综合久久九月婷婷色综合| 中文欧美字幕免费| 丁香天五香天堂综合| 久久伊99综合婷婷久久伊| 老司机精品视频导航| 欧美一区二区三区性视频| 亚洲二区视频在线| 欧美无乱码久久久免费午夜一区| 亚洲婷婷综合色高清在线| 99国产欧美另类久久久精品| 国产精品午夜春色av| 成人免费高清在线观看| 国产精品视频一二三| jvid福利写真一区二区三区| 中文字幕五月欧美| 色婷婷综合久久久久中文一区二区| 亚洲三级免费电影| 在线视频国产一区| 亚洲高清免费视频| 欧美日韩一区国产| 丝袜美腿亚洲色图| 日韩精品中午字幕| 国内不卡的二区三区中文字幕| 精品国产91洋老外米糕| 国产精品77777竹菊影视小说| 中日韩免费视频中文字幕| jlzzjlzz欧美大全| 一级日本不卡的影视| 91精品国产乱| 国产乱国产乱300精品| 国产精品久久久久精k8 | 欧美区在线观看| 久久91精品久久久久久秒播| 久久午夜老司机| av色综合久久天堂av综合| 亚洲一二三区在线观看| 91精品国产全国免费观看| 国产成人综合网站| 亚洲精品国产视频| 欧美一级搡bbbb搡bbbb| 国产成人av在线影院| 亚洲最新在线观看| 欧美变态口味重另类| 99精品久久99久久久久| 午夜电影一区二区| 中文一区二区在线观看| 欧美怡红院视频| 久久成人av少妇免费| 亚洲欧美在线视频| 欧美电视剧免费观看| 成人激情黄色小说| 日本成人在线视频网站| 中文字幕巨乱亚洲| 91精品欧美久久久久久动漫| 成人白浆超碰人人人人| 免费人成网站在线观看欧美高清| 国产欧美一区视频| 欧美一区二区久久久| 91视频免费观看| 狠狠狠色丁香婷婷综合激情| 亚洲va欧美va人人爽午夜| 国产精品国产自产拍高清av| 91精品国产综合久久香蕉麻豆| 成人爱爱电影网址| 精品一区二区三区免费观看 | 中文字幕不卡在线观看| 欧美一级高清片| 色香蕉久久蜜桃| 国产成a人亚洲精品| 婷婷成人激情在线网| 亚洲欧美中日韩| 国产精品色眯眯| 久久久久久久一区| 日韩欧美视频在线| 制服.丝袜.亚洲.中文.综合| 色婷婷精品大视频在线蜜桃视频 | 经典一区二区三区| 性做久久久久久久免费看| 一区二区中文视频| 国产调教视频一区| 精品国产乱码久久久久久夜甘婷婷 | 欧美三区在线视频| 91免费国产在线| av不卡在线观看| 成人国产精品免费观看| 国产成+人+日韩+欧美+亚洲| 国模大尺度一区二区三区| 免费成人结看片| 日本中文在线一区| 热久久国产精品| 欧美a级理论片| 青青草国产精品亚洲专区无| 亚洲mv大片欧洲mv大片精品| 亚洲伊人色欲综合网| 亚洲激情男女视频| 一区二区三区鲁丝不卡| 亚洲精品乱码久久久久久黑人| 国产精品短视频| 最新欧美精品一区二区三区| 亚洲欧美日韩国产综合在线| 亚洲欧美二区三区| 一区二区三区四区在线| 亚洲成人一区二区在线观看| 视频一区二区三区入口| 国产在线视频精品一区| 成人av免费网站| 91精品办公室少妇高潮对白| 欧洲生活片亚洲生活在线观看| 欧美日韩一区二区不卡| 日韩午夜在线观看| 久久亚洲精华国产精华液| 中文无字幕一区二区三区| 亚洲人123区| 日韩高清一区在线| 精品一区二区三区免费播放 | 狠狠色丁香久久婷婷综合_中| 国产成人综合自拍| 91色porny在线视频| 在线播放中文字幕一区| 精品国产91乱码一区二区三区| 欧美极品xxx| 亚洲图片欧美色图| 黄网站免费久久| 91在线视频观看| 91麻豆精品国产| 国产精品素人视频| 午夜日韩在线电影| 国产精品一级在线| 精品视频一区二区不卡| 久久综合色一综合色88| 亚洲伦在线观看| 久国产精品韩国三级视频| jlzzjlzz国产精品久久| 日韩一区二区视频| 1000精品久久久久久久久| 另类小说视频一区二区| 99久久精品国产毛片| 91精品国产综合久久精品app| 国产日韩欧美精品在线| 无码av免费一区二区三区试看 | 国产综合一区二区| 在线视频一区二区三| 精品国产一区久久| 伊人夜夜躁av伊人久久| 国产精品自产自拍| 777色狠狠一区二区三区| 国产精品久久国产精麻豆99网站| 天天亚洲美女在线视频| 北条麻妃国产九九精品视频| 日韩美女天天操| 伊人色综合久久天天| 丰满亚洲少妇av| 精品免费日韩av| 亚洲成人av一区二区| 色综合天天综合色综合av| 久久精品网站免费观看| 免费精品视频在线| 欧美日产在线观看| 一区二区三区免费看视频| 99免费精品在线| 日本一区二区三区四区 | 国产欧美一区二区精品性色超碰| 亚洲地区一二三色| 在线视频中文字幕一区二区| 亚洲人一二三区| a在线播放不卡| 亚洲欧美在线aaa| 成人午夜视频免费看| 久久久国产午夜精品| 精品一区二区影视| 精品91自产拍在线观看一区| 久久成人综合网| 精品久久一区二区三区| 精品一二三四在线| 精品999在线播放| 国产精品一二三四五| 中文字幕av在线一区二区三区| 懂色av中文一区二区三区| 国产精品视频九色porn|