Skip to content
Snippets Groups Projects
Commit 896c48e4 authored by Felix Sidokhine's avatar Felix Sidokhine
Browse files

ran optimize imports

parent f275da83
No related branches found
No related tags found
No related merge requests found
...@@ -41,7 +41,7 @@ public class CRLWorker extends X509Worker<RevocationRequest> { ...@@ -41,7 +41,7 @@ public class CRLWorker extends X509Worker<RevocationRequest> {
} }
else existingCRL = new AtomicReference<>(); else existingCRL = new AtomicReference<>();
existingCRL.set(crlBuilder.build(new JcaContentSignerBuilder("SHA512WITHRSA").setProvider("BC").build(getSigningKey()))); existingCRL.set(crlBuilder.build(new JcaContentSignerBuilder("SHA512WITHRSA").setProvider("BC").build(getSigningKey())));
log.info("Successfully processed request for ID " + revocationRequest.getIdentifier()); log.info("Successfully ran revocation routine");
} }
catch (Exception e){ catch (Exception e){
log.error("Failed to sign a CRL with error " + e.toString()); log.error("Failed to sign a CRL with error " + e.toString());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment