NetscapeCertType.java
上传用户:lior1029
上传日期:2013-05-07
资源大小:209k
文件大小:2k
源码类别:

CA认证

开发平台:

Java

  1. package org.bouncycastle.asn1.misc;
  2. import org.bouncycastle.asn1.*;
  3. /**
  4.  * <pre>
  5.  *    NetscapeCertType ::= BIT STRING {
  6.  *         SSLClient               (0),
  7.  *         SSLServer               (1),
  8.  *         S/MIME                  (2),
  9.  *         Object Signing          (3),
  10.  *         Reserved                (4),
  11.  *         SSL CA                  (5),
  12.  *         S/MIME CA               (6),
  13.  *         Object Signing CA       (7) }
  14.  * </pre>
  15.  */
  16. public class NetscapeCertType
  17.     extends DERBitString
  18. {
  19.     public static final int        sslClient        = (1 << 7); 
  20.     public static final int        sslServer        = (1 << 6);
  21.     public static final int        smime            = (1 << 5);
  22.     public static final int        objectSigning    = (1 << 4);
  23.     public static final int        reserved         = (1 << 3);
  24.     public static final int        sslCA            = (1 << 2);
  25.     public static final int        smimeCA          = (1 << 1);
  26.     public static final int        objectSigningCA  = (1 << 0);
  27.     /**
  28.      * Basic constructor.
  29.      * 
  30.      * @param usage - the bitwise OR of the Key Usage flags giving the
  31.      * allowed uses for the key.
  32.      * e.g. (X509NetscapeCertType.sslCA | X509NetscapeCertType.smimeCA)
  33.      */
  34.     public NetscapeCertType(
  35.         int usage)
  36.     {
  37.         super(getBytes(usage), getPadBits(usage));
  38.     }
  39.     public NetscapeCertType(
  40.         DERBitString usage)
  41.     {
  42.         super(usage.getBytes(), usage.getPadBits());
  43.     }
  44.     public String toString()
  45.     {
  46.         return "NetscapeCertType: 0x" + Integer.toHexString(data[0] & 0xff);
  47.     }
  48. }