Home | History | Annotate | Download | only in x509

Lines Matching defs:ISSUER

52  * <LI>The <em>Issuer Name</em>, an X.500 Distinguished Name for the
75 public static final String ISSUER = "issuer";
87 protected X500Name issuer = null;
120 map.put(ISSUER, Integer.valueOf(ATTR_ISSUER));
199 elements.addElement(ISSUER);
295 || issuer == null || algId == null || serialNum == null) {
306 sb.append(" Issuer: " + issuer.toString() + "\n");
311 sb.append(" Issuer Id:\n" + issuerUniqueId.toString() + "\n");
489 issuer = null;
563 return(issuer);
606 * Get the Issuer or Subject name
611 return getIssuer ? issuer : subject;
613 return getIssuer ? issuer.asX500Principal()
648 // Issuer name
649 issuer = new X500Name(in);
650 if (issuer.isEmpty()) {
652 "Empty issuer DN not allowed in X509Certificates");
761 // Encode serial number, issuer signing algorithm, issuer name
767 (issuer.toString() == null))
769 "Null issuer DN not allowed in v1 certificate");
771 issuer.encode(tmp);
853 * Set the issuer name of the certificate.
855 * @params val the Object class value for the issuer
861 "Issuer class type invalid.");
863 issuer = (X500Name)val;
909 * Set the Issuer Unique Identity in the certificate.