feat(pki-server): add OCSP responder and close server release

Add durable multi-authority OCSP responders with strict request parsing,
issuer-bound serial lookup, stable revocation views, signed responses,
nonce policies and bounded protocol execution.

Complete in-process and packaged OCSP validation and close the PKI server
after the final architecture, security and release audit.
This commit is contained in:
2026-08-05 18:32:00 +02:00
parent b19edf17fd
commit 44cbb0a37d
38 changed files with 2831 additions and 107 deletions

View File

@@ -6,12 +6,20 @@ plugins {
group = 'org.egothor'
configurations {
mockitoAgent
}
dependencies {
api project(':pki')
implementation project(':lib')
implementation platform('tools.jackson:jackson-bom:3.1.5')
implementation 'tools.jackson.core:jackson-core'
testImplementation 'org.bouncycastle:bcpkix-jdk18on:1.84'
testImplementation 'org.mockito:mockito-core:5.23.0'
mockitoAgent('org.mockito:mockito-core:5.23.0') {
transitive = false
}
}
application {
@@ -21,6 +29,7 @@ application {
tasks.named('test') {
dependsOn tasks.named('installDist')
jvmArgs("-javaagent:${configurations.mockitoAgent.singleFile}")
}
jar {