Package org.bouncycastle.jce

Examples of org.bouncycastle.jce.X509V2CRLGenerator


                         "DN (RFC2253) = '" + targetBase + "' " +
                         "and Globus style DN = '" + globusCADN + "'. " +
                         "New DNs will look like this (RFC2253): '" +
                         this.targetString + "'";

        this.crlGen = new X509V2CRLGenerator();
        this.crlGen.setIssuerDN(this.caX509Name);
        this.crlGen.setSignatureAlgorithm("SHA1withRSA");
    }
View Full Code Here


                         "DN (RFC2253) = '" + targetBase + "' " +
                         "and Globus style DN = '" + globusCADN + "'. " +
                         "New DNs will look like this (RFC2253): '" +
                         this.targetString + "'";

        this.crlGen = new X509V2CRLGenerator();
        this.crlGen.setIssuerDN(this.caX509Name);
        this.crlGen.setSignatureAlgorithm("SHA1withRSA");
    }
View Full Code Here

TOP

Related Classes of org.bouncycastle.jce.X509V2CRLGenerator

Copyright © 2018 www.massapicom. 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.