Class JcaX509v3CertificateBuilder


  • public class JcaX509v3CertificateBuilder
    extends X509v3CertificateBuilder
    JCA helper class to allow JCA objects to be used in the construction of a Version 3 certificate.
    • Constructor Summary

      Constructors 
      Constructor Description
      JcaX509v3CertificateBuilder​(java.security.cert.X509Certificate template)
      Create a builder for a version 3 certificate, initialised with another certificate.
      JcaX509v3CertificateBuilder​(java.security.cert.X509Certificate issuerCert, java.math.BigInteger serial, java.util.Date notBefore, java.util.Date notAfter, javax.security.auth.x500.X500Principal subject, java.security.PublicKey publicKey)
      Initialise the builder using the subject from the passed in issuerCert as the issuer, as well as passing through and converting the other objects provided.
      JcaX509v3CertificateBuilder​(java.security.cert.X509Certificate issuerCert, java.math.BigInteger serial, java.util.Date notBefore, java.util.Date notAfter, org.bouncycastle.asn1.x500.X500Name subject, java.security.PublicKey publicKey)
      Initialise the builder using the subject from the passed in issuerCert as the issuer, as well as passing through and converting the other objects provided.
      JcaX509v3CertificateBuilder​(javax.security.auth.x500.X500Principal issuer, java.math.BigInteger serial, java.util.Date notBefore, java.util.Date notAfter, javax.security.auth.x500.X500Principal subject, java.security.PublicKey publicKey)
      Initialise the builder using X500Principal objects and a PublicKey.
      JcaX509v3CertificateBuilder​(org.bouncycastle.asn1.x500.X500Name issuer, java.math.BigInteger serial, java.util.Date notBefore, java.util.Date notAfter, org.bouncycastle.asn1.x500.X500Name subject, java.security.PublicKey publicKey)
      Initialise the builder using a PublicKey.
      JcaX509v3CertificateBuilder​(org.bouncycastle.asn1.x500.X500Name issuer, java.math.BigInteger serial, org.bouncycastle.asn1.x509.Time notBefore, org.bouncycastle.asn1.x509.Time notAfter, org.bouncycastle.asn1.x500.X500Name subject, java.security.PublicKey publicKey)
      Initialise the builder using a PublicKey.
    • Constructor Detail

      • JcaX509v3CertificateBuilder

        public JcaX509v3CertificateBuilder​(org.bouncycastle.asn1.x500.X500Name issuer,
                                           java.math.BigInteger serial,
                                           java.util.Date notBefore,
                                           java.util.Date notAfter,
                                           org.bouncycastle.asn1.x500.X500Name subject,
                                           java.security.PublicKey publicKey)
        Initialise the builder using a PublicKey.
        Parameters:
        issuer - X500Name representing the issuer of this certificate.
        serial - the serial number for the certificate.
        notBefore - date before which the certificate is not valid.
        notAfter - date after which the certificate is not valid.
        subject - X500Name representing the subject of this certificate.
        publicKey - the public key to be associated with the certificate.
      • JcaX509v3CertificateBuilder

        public JcaX509v3CertificateBuilder​(org.bouncycastle.asn1.x500.X500Name issuer,
                                           java.math.BigInteger serial,
                                           org.bouncycastle.asn1.x509.Time notBefore,
                                           org.bouncycastle.asn1.x509.Time notAfter,
                                           org.bouncycastle.asn1.x500.X500Name subject,
                                           java.security.PublicKey publicKey)
        Initialise the builder using a PublicKey.
        Parameters:
        issuer - X500Name representing the issuer of this certificate.
        serial - the serial number for the certificate.
        notBefore - Time before which the certificate is not valid.
        notAfter - Time after which the certificate is not valid.
        subject - X500Name representing the subject of this certificate.
        publicKey - the public key to be associated with the certificate.
      • JcaX509v3CertificateBuilder

        public JcaX509v3CertificateBuilder​(javax.security.auth.x500.X500Principal issuer,
                                           java.math.BigInteger serial,
                                           java.util.Date notBefore,
                                           java.util.Date notAfter,
                                           javax.security.auth.x500.X500Principal subject,
                                           java.security.PublicKey publicKey)
        Initialise the builder using X500Principal objects and a PublicKey.
        Parameters:
        issuer - principal representing the issuer of this certificate.
        serial - the serial number for the certificate.
        notBefore - date before which the certificate is not valid.
        notAfter - date after which the certificate is not valid.
        subject - principal representing the subject of this certificate.
        publicKey - the public key to be associated with the certificate.
      • JcaX509v3CertificateBuilder

        public JcaX509v3CertificateBuilder​(java.security.cert.X509Certificate issuerCert,
                                           java.math.BigInteger serial,
                                           java.util.Date notBefore,
                                           java.util.Date notAfter,
                                           javax.security.auth.x500.X500Principal subject,
                                           java.security.PublicKey publicKey)
        Initialise the builder using the subject from the passed in issuerCert as the issuer, as well as passing through and converting the other objects provided.
        Parameters:
        issuerCert - certificate who's subject is the issuer of the certificate we are building.
        serial - the serial number for the certificate.
        notBefore - date before which the certificate is not valid.
        notAfter - date after which the certificate is not valid.
        subject - principal representing the subject of this certificate.
        publicKey - the public key to be associated with the certificate.
      • JcaX509v3CertificateBuilder

        public JcaX509v3CertificateBuilder​(java.security.cert.X509Certificate issuerCert,
                                           java.math.BigInteger serial,
                                           java.util.Date notBefore,
                                           java.util.Date notAfter,
                                           org.bouncycastle.asn1.x500.X500Name subject,
                                           java.security.PublicKey publicKey)
        Initialise the builder using the subject from the passed in issuerCert as the issuer, as well as passing through and converting the other objects provided.
        Parameters:
        issuerCert - certificate who's subject is the issuer of the certificate we are building.
        serial - the serial number for the certificate.
        notBefore - date before which the certificate is not valid.
        notAfter - date after which the certificate is not valid.
        subject - principal representing the subject of this certificate.
        publicKey - the public key to be associated with the certificate.
      • JcaX509v3CertificateBuilder

        public JcaX509v3CertificateBuilder​(java.security.cert.X509Certificate template)
                                    throws java.security.cert.CertificateEncodingException
        Create a builder for a version 3 certificate, initialised with another certificate.
        Parameters:
        template - template certificate to base the new one on.
        Throws:
        java.security.cert.CertificateEncodingException
    • Method Detail

      • copyAndAddExtension

        public JcaX509v3CertificateBuilder copyAndAddExtension​(org.bouncycastle.asn1.ASN1ObjectIdentifier oid,
                                                               boolean critical,
                                                               java.security.cert.X509Certificate certificate)
                                                        throws java.security.cert.CertificateEncodingException
        Add a given extension field for the standard extensions tag (tag 3) copying the extension value from another certificate.
        Parameters:
        oid - the type of the extension to be copied.
        critical - true if the extension is to be marked critical, false otherwise.
        certificate - the source of the extension to be copied.
        Returns:
        the builder instance.
        Throws:
        java.security.cert.CertificateEncodingException