Class X509Principal

  • All Implemented Interfaces:
    java.security.Principal, ASN1Encodable, Encodable

    public class X509Principal
    extends X509Name
    implements java.security.Principal
    Deprecated.
    use the X500Name class.
    a general extension of X509Name with a couple of extra methods and constructors.

    Objects of this type can be created from certificates and CRLs using the PrincipalUtil class.

    See Also:
    PrincipalUtil
    • Constructor Detail

      • X509Principal

        public X509Principal​(byte[] bytes)
                      throws java.io.IOException
        Deprecated.
        Constructor from an encoded byte array.
        Throws:
        java.io.IOException
      • X509Principal

        public X509Principal​(X509Name name)
        Deprecated.
        Constructor from an X509Name object.
      • X509Principal

        public X509Principal​(X500Name name)
        Deprecated.
        Constructor from an X509Name object.
      • X509Principal

        public X509Principal​(java.util.Hashtable attributes)
        Deprecated.
        constructor from a table of attributes.

        it's is assumed the table contains OID/String pairs.

      • X509Principal

        public X509Principal​(java.util.Vector ordering,
                             java.util.Hashtable attributes)
        Deprecated.
        constructor from a table of attributes and a vector giving the specific ordering required for encoding or conversion to a string.

        it's is assumed the table contains OID/String pairs.

      • X509Principal

        public X509Principal​(java.util.Vector oids,
                             java.util.Vector values)
        Deprecated.
        constructor from a vector of attribute values and a vector of OIDs.
      • X509Principal

        public X509Principal​(java.lang.String dirName)
        Deprecated.
        takes an X509 dir name as a string of the format "C=AU,ST=Victoria", or some such, converting it into an ordered set of name attributes.
      • X509Principal

        public X509Principal​(boolean reverse,
                             java.lang.String dirName)
        Deprecated.
        Takes an X509 dir name as a string of the format "C=AU,ST=Victoria", or some such, converting it into an ordered set of name attributes. If reverse is false the dir name will be encoded in the order of the (name, value) pairs presented, otherwise the encoding will start with the last (name, value) pair and work back.
      • X509Principal

        public X509Principal​(boolean reverse,
                             java.util.Hashtable lookUp,
                             java.lang.String dirName)
        Deprecated.
        Takes an X509 dir name as a string of the format "C=AU, ST=Victoria", or some such, converting it into an ordered set of name attributes. lookUp should provide a table of lookups, indexed by lowercase only strings and yielding a ASN1ObjectIdentifier, other than that OID. and numeric oids will be processed automatically.

        If reverse is true, create the encoded version of the sequence starting from the last element in the string.

    • Method Detail

      • getName

        public java.lang.String getName()
        Deprecated.
        Specified by:
        getName in interface java.security.Principal
      • getEncoded

        public byte[] getEncoded()
        Deprecated.
        return a DER encoded byte array representing this object
        Specified by:
        getEncoded in interface Encodable
        Overrides:
        getEncoded in class ASN1Object
        Returns:
        BER/DER byte encoded object.