Package codec.x509

Source Code of codec.x509.GeneralName

/* ========================================================================
*
*  This file is part of CODEC, which is a Java package for encoding
*  and decoding ASN.1 data structures.
*
*  Author: Fraunhofer Institute for Computer Graphics Research IGD
*          Department A8: Security Technology
*          Fraunhoferstr. 5, 64283 Darmstadt, Germany
*
*  Rights: Copyright (c) 2004 by Fraunhofer-Gesellschaft
*          zur Foerderung der angewandten Forschung e.V.
*          Hansastr. 27c, 80686 Munich, Germany.
*
* ------------------------------------------------------------------------
*
*  The software package is free software; you can redistribute it and/or
*  modify it under the terms of the GNU Lesser General Public License as
*  published by the Free Software Foundation; either version 2.1 of the
*  License, or (at your option) any later version.
*
*  This library is distributed in the hope that it will be useful, but
*  WITHOUT ANY WARRANTY; without even the implied warranty of
*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
*  Lesser General Public License for more details.
*
*  You should have received a copy of the GNU Lesser General Public
*  License along with this software package; if not, write to the Free
*  Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
*  MA 02110-1301, USA or obtain a copy of the license at
*  http://www.fsf.org/licensing/licenses/lgpl.txt.
*
* ------------------------------------------------------------------------
*
*  The CODEC library can solely be used and distributed according to
*  the terms and conditions of the GNU Lesser General Public License .
*
*  The CODEC library has not been tested for the use or application
*  for a determined purpose. It is a developing version that can
*  possibly contain errors. Therefore, Fraunhofer-Gesellschaft zur
*  Foerderung der angewandten Forschung e.V. does not warrant that the
*  operation of the CODEC library will be uninterrupted or error-free.
*  Neither does Fraunhofer-Gesellschaft zur Foerderung der angewandten
*  Forschung e.V. warrant that the CODEC library will operate and
*  interact in an uninterrupted or error-free way together with the
*  computer program libraries of third parties which the CODEC library
*  accesses and which are distributed together with the CODEC library.
*
*  Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V.
*  does not warrant that the operation of the third parties's computer
*  program libraries themselves which the CODEC library accesses will
*  be uninterrupted or error-free.
*
*  Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V.
*  shall not be liable for any errors or direct, indirect, special,
*  incidental or consequential damages, including lost profits resulting
*  from the combination of the CODEC library with software of any user
*  or of any third party or resulting from the implementation of the
*  CODEC library in any products, systems or services of any user or
*  of any third party.
*
*  Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V.
*  does not provide any warranty nor any liability that utilization of
*  the CODEC library will not interfere with third party intellectual
*  property rights or with any other protected third party rights or will
*  cause damage to third parties. Fraunhofer Gesellschaft zur Foerderung
*  der angewandten Forschung e.V. is currently not aware of any such
*  rights.
*
*  The CODEC library is supplied without any accompanying services.
*
* ========================================================================
*/
package codec.x509;

import codec.asn1.ASN1Choice;
import codec.asn1.ASN1IA5String;
import codec.asn1.ASN1ObjectIdentifier;
import codec.asn1.ASN1OctetString;
import codec.asn1.ASN1OpenType;
import codec.asn1.ASN1Sequence;
import codec.asn1.ASN1TaggedType;
import codec.asn1.ASN1Type;
import codec.asn1.ConstraintException;
import codec.x501.BadNameException;
import codec.x501.Name;

/**
* This class represents the <em>GeneralName</em> data type as denoted in
* X.509. It implements the following ASN1 data structure:
* <p>
*
* <pre>
* GeneralName ::= CHOICE {
*    otherName                     [0]  IMPLICIT OtherName
*    rfc822Name                    [1]  IMPLICIT IA5String
*    dNSName                       [2]  IMPLICIT IA5String
*    x400Address                   [3]  IMPLICIT ORAAddress
*    directoryName                 [4]  IMPLICIT Name
*    ediPartyName                  [5]  IMPLICIT EDIPartyName
*    uniformRessourceIdentifier    [6]  IMPLICIT IA5String
*    iPAddress                     [7]  IMPLICIT OCTET STRING
*    registeredID                  [8]  IMPLICIT OBJECT IDENTIFIER
* }
* OtherName ::= SEQUENCE {
*    type-id    OBJECT IDENTIFIER,
*    value      [0] EXPLICIT ANY DEFINED BY type-id
* }
* </pre>
*
* Note that x400Address and ediPartyName are not yet implemented and will cause
* exceptions to be thrown.
*
* @author Markus Tak
*/
public class GeneralName extends ASN1Choice {

    /**
     * This value indicates the choice "otherName"
     */
    public static final int TYPE_OTHER_NAME = 0;
    private ASN1TaggedType otherName_;
    private ASN1Sequence otherNameSequence_;
    private ASN1ObjectIdentifier otherNameID_;
    private ASN1TaggedType otherNameValueTag_;
    private ASN1OpenType otherNameValue_;

    /**
     * This value indicates the choice "rfc822Name"
     */
    public static final int TYPE_RFC822_NAME = 1;
    private ASN1IA5String rfc822N_;
    private ASN1TaggedType rfc822Name_;

    /**
     * This value indicates the choice "dNSName"
     */
    public static final int TYPE_DNS_NAME = 2;
    private ASN1IA5String dNSN_;
    private ASN1TaggedType dNSName_;

    /**
     * This value indicates the choice "x400Address"
     */
    public static final int TYPE_X400_ADDRESS = 3;

    /**
     * This value indicates the choice "directoryName"
     */
    public static final int TYPE_DIRECTORY_NAME = 4;
    private Name dirN_;
    private ASN1TaggedType directoryName_;

    /**
     * This value indicates the choice "ediPartyName"
     */
    public static final int TYPE_EDI_PARTY_NAME = 5;

    /**
     * This value indicates the choice "uniformResourceIdentifier"
     */
    public static final int TYPE_UNIFORM_RESOURCE_IDENTIFIER = 6;
    private ASN1IA5String uniformResourceId_;
    private ASN1TaggedType uniformResourceIdentifier_;

    /**
     * This value indicates the choice "iPAddress"
     */
    public static final int TYPE_IP_ADDRESS = 7;
    private ASN1OctetString iPAdr_;
    private ASN1TaggedType iPAddress_;

    /**
     * This value indicates the choice "registeredID"
     */
    public static final int TYPE_REGISTERED_ID = 8;
    private ASN1ObjectIdentifier regID_;
    private ASN1TaggedType registeredID_;

    /**
     * Builds the structure of the class ready for decoding
     */
    public GeneralName() {
  super();

  otherNameID_ = new ASN1ObjectIdentifier();
  otherNameValue_ = new ASN1OpenType();

  otherNameValueTag_ = new ASN1TaggedType(0, otherNameValue_, true, false);

  otherNameSequence_ = new ASN1Sequence();
  otherNameSequence_.add(otherNameID_);
  otherNameSequence_.add(otherNameValueTag_);

  otherName_ = new ASN1TaggedType(TYPE_OTHER_NAME, otherNameSequence_,
    false, false);
  addType(otherName_);

  rfc822N_ = new ASN1IA5String();
  rfc822Name_ = new ASN1TaggedType(TYPE_RFC822_NAME, rfc822N_, false,
    false);
  addType(rfc822Name_);

  dNSN_ = new ASN1IA5String();
  dNSName_ = new ASN1TaggedType(TYPE_DNS_NAME, dNSN_, false, false);
  addType(dNSName_);

  // x400Address is not supported yet...

  dirN_ = new Name();
  // directoryName *MUST* be marked explicit here for the decoding
  // operation
  // to succeed. see also the setDirectoryName() method for more
  // information
  // --volker roth & ralf weinmann
  directoryName_ = new ASN1TaggedType(TYPE_DIRECTORY_NAME, dirN_, true,
    false);
  addType(directoryName_);

  // ediPartyName is not supported yet...

  uniformResourceId_ = new ASN1IA5String();
  uniformResourceIdentifier_ = new ASN1TaggedType(
    TYPE_UNIFORM_RESOURCE_IDENTIFIER, uniformResourceId_, false,
    false);
  addType(uniformResourceIdentifier_);

  iPAdr_ = new ASN1OctetString();

  iPAddress_ = new ASN1TaggedType(TYPE_IP_ADDRESS, iPAdr_, false, false);
  addType(iPAddress_);

  regID_ = new ASN1ObjectIdentifier();

  registeredID_ = new ASN1TaggedType(TYPE_REGISTERED_ID, regID_, false,
    false);
  addType(registeredID_);
    }

    /**
     * Returns the actual Name as ASN1Type. In fact, this can be:<br>
     * <li>ASN1IA5String in case of rfcName, dNSName and
     * uniformResourceIdentifier
     * <li>ASN1OctetString in case of iPAddress
     * <li>Name in case of directoryName
     * <li>ASN1ObjectIdentifier in case of registeredID
     * <li>ASN1Sequence in case of otherName
     *
     * @return the actual GeneralName value. The type depends on the chosen
     *         representation and can be either ASN1IA5String, ASN1OctetString,
     *         Name, ASN1Sequence or ASN1ObjectIdentifier.
     * @throws X509Exception
     *                 if there was a bad tag
     */
    public ASN1Type getGeneralName() throws X509Exception {
  int tag = getTag();

  // extract the TaggedType first, then the "real" inner
  // value
  ASN1TaggedType inner = (ASN1TaggedType) getInnerType();

  switch (tag) {
  case TYPE_OTHER_NAME:
      return inner.getInnerType();
  case TYPE_RFC822_NAME:
      return inner.getInnerType();
  case TYPE_DNS_NAME:
      return inner.getInnerType();
  case TYPE_X400_ADDRESS:
      throw new X509Exception("x400Address not yet supported!");
  case TYPE_DIRECTORY_NAME:
      return inner.getInnerType();
  case TYPE_EDI_PARTY_NAME:
      throw new X509Exception("ediPartyName not yet supported!");
  case TYPE_UNIFORM_RESOURCE_IDENTIFIER:
      return inner.getInnerType();
  case TYPE_IP_ADDRESS:
      return inner.getInnerType();
  case TYPE_REGISTERED_ID:
      return inner.getInnerType();
  default:
      throw new X509Exception("Tag not supported for GeneralName: " + tag);
  }
    }

    /**
     * Set the GeneralName as a directoryName. Note that the given Name object
     * is cloned so that no side effects can occur!
     *
     * @param dirname
     *                the name to be set
     */
    public void setDirectoryName(Name dirname) {
  /*
   * I removed the old code which merely cloned the dirname. This is prone
   * to break because cloning does not make a *deep* copy. It just creates
   * a new instance of name and copies the references. Modification of the
   * contents of the old name modifies the contents of the new one and
   * vice versa. --volker roth
   */
  try {
      dirN_ = new Name(dirname.getName(), -1);
  } catch (BadNameException e) {
      throw new IllegalStateException("INTERNAL ERROR");
  }
  /*
   * This is one of the most nasty issues in ASN.1. GeneralName is
   * specified in a module with IMPLICIT default tagging. directoryName
   * must therefore in principle be tagged IMPLICIT. However, since
   * GeneralName is an untagged CHOICE type, X.683 says that in this case
   * the tagging must actually be EXPLICIT. So, save yourself some trouble
   * and keep this tagged EXPLICIT. It sure cost me some headache to find
   * out... --volker roth
   */
  dirN_.setExplicit(true);

  directoryName_.setInnerType(dirN_);
  setInnerType(directoryName_);
    }

    /**
     * Set the GeneralName as a dNSName.Note that the ASN1IA5String object is
     * cloned so that no side effects can occur!
     *
     * @param dnsname
     *                the name to be set
     */
    public void setDNSName(ASN1IA5String dnsname) {
  dNSN_ = new ASN1IA5String(new String(dnsname.getString()));

  dNSN_.setExplicit(false);
  dNSName_.setInnerType(dNSN_);
  setInnerType(dNSName_);
    }

    /**
     * Set the GeneralName as a iPAddress.
     *
     * For IPv4 addresses, byte array MUST contain eight (8) octets, encoded in
     * the style of RFC 1519 (CIDR) to represent an address range.[RFC 1519] For
     * IPv6 addresses, it MUST contain 32 octets similarly encoded. For example,
     * a name constraint for "class C" subnet 10.9.8.0 shall be represented as
     * the octets 0A 09 08 00 FF FF FF 00, representing the CIDR notation
     * 10.9.8.0/255.255.255.0.
     *
     * @param address
     *                the address to be set (must be either 8 or 32 bytes)
     * @throws java.security.InvalidParameterException
     *                 if length of address is not 8 or 32 bytes.
     */
    public void setIPAddress(byte[] address)
      throws java.security.InvalidParameterException {

  if (address.length != 8 && address.length != 32 && address.length != 4
    && address.length != 16)
      throw new java.security.InvalidParameterException(
        "IP-Adress must be either 4,8,16 or 32 bytes!");
  try {
      iPAdr_.setByteArray(address);
  } catch (ConstraintException ignore) {
  }

  setInnerType(iPAddress_);
    }

    /**
     * Set the GeneralName as a registeredID. Note that the given
     * ASN1ObjectIdentifier object is cloned so that no side effects can occur!
     *
     * @param oid
     *                the name to be set
     */
    public void setRegisteredID(ASN1ObjectIdentifier oid) {
  regID_ = new ASN1ObjectIdentifier(oid.getOID());
  regID_.setExplicit(false);
  registeredID_.setInnerType(regID_);
  setInnerType(registeredID_);
    }

    /**
     * Set the GeneralName as a rfc822Namename. Note that the ASN1IA5String
     * object is cloned so that no side effects can occur!
     *
     * @param rfcname
     *                the name to be set
     */
    public void setRfc822Name(ASN1IA5String rfcname) {
  rfc822N_ = new ASN1IA5String(new String(rfcname.getString()));
  rfc822N_.setExplicit(false);
  rfc822Name_.setInnerType(rfc822N_);
  setInnerType(rfc822Name_);
    }

    /**
     * Set the GeneralName as uniformResourceIdentifier.Note that the
     * ASN1IA5String object is cloned so that no side effects can occur!
     *
     * @param unirid
     *                the name to be set
     */
    public void setUniformResourceIdentifier(ASN1IA5String unirid) {
  uniformResourceId_ = new ASN1IA5String(new String(unirid.getString()));
  uniformResourceId_.setExplicit(false);
  uniformResourceIdentifier_.setInnerType(uniformResourceId_);
  setInnerType(uniformResourceIdentifier_);
    }

    /**
     * This method returns a "human-readable" string representation of this
     * object's state
     *
     * @return a string representation of this object
     */
    public String toString() {

  StringBuffer res = new StringBuffer("GeneralName {\n");

  try {
      res.append(getGeneralName().toString());
  } catch (Exception e) {
      res.append("Caught Exception " + e.getMessage());
      e.printStackTrace();
  }
  res.append("\n}");

  return res.toString();
    }
}
TOP

Related Classes of codec.x509.GeneralName

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.