feat: Add basic support for running OpenSSL CLI #4

Merged
MarkL4YG merged 11 commits from feat/create-openssl-certs into main 2024-11-17 19:52:16 +00:00
Showing only changes of commit 9c1f1a27e8 - Show all commits

View file

@ -31,6 +31,5 @@ public class TestOpenSSLCertificateCreator {
try (var cert = openSSLCertificateCreator.createCertificate(certRequest)) { try (var cert = openSSLCertificateCreator.createCertificate(certRequest)) {
System.out.println("Certificate created: " + cert); System.out.println("Certificate created: " + cert);
} }
throw new RuntimeException("Test not implemented");
} }
} }