Skip to content

Commit

Permalink
addressing issue #21 - minor code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
tkohegyi committed Aug 30, 2024
1 parent 7cd2162 commit cab5205
Showing 1 changed file with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@
import org.bouncycastle.operator.ContentSigner;
import org.bouncycastle.operator.OperatorCreationException;
import org.bouncycastle.operator.jcajce.JcaContentSignerBuilder;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import javax.security.auth.x500.X500Principal;
import java.math.BigInteger;
Expand All @@ -32,10 +30,8 @@
import java.security.SignatureException;
import java.security.cert.CertificateException;
import java.security.cert.X509Certificate;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashSet;
import java.util.List;
import java.util.Set;

/**
Expand All @@ -50,13 +46,7 @@
* @author Brad Hill
*/
public class CertificateCreator {
private static final Logger log = LoggerFactory.getLogger(CertificateCreator.class);


/**
* The default key generation algorithm for this package is RSA.
*/
public static final String KEYGEN_ALGO = "RSA";
/**
* The default sign algorithm for this package is SHA1 with RSA.
*/
Expand Down

0 comments on commit cab5205

Please sign in to comment.