feat(pki-server): add secure administrative HTTPS API

Add the mutually authenticated administrative HTTPS server with strict
typed JSON, bounded request execution, multi-authority authorization,
approval enforcement, safe auditing and finite shutdown.

Reuse one long-lived realm and PKI session without duplicating backend
authority or operation semantics.
This commit is contained in:
2026-08-04 20:16:34 +02:00
parent 8a5cbb61b3
commit d7793e5c49
30 changed files with 3866 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
plugins {
id 'buildlogic.java-library-conventions'
id 'application'
id 'com.palantir.git-version'
}
@@ -10,6 +11,22 @@ dependencies {
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'
}
application {
mainClass = 'zeroecho.pki.server.PkiServerMain'
applicationName = 'zeroecho-pki-server'
}
jar {
manifest {
attributes(
'Main-Class': application.mainClass,
'Implementation-Title': 'ZeroEcho PKI Server',
'Implementation-Version': "${version}"
)
}
}
javadoc {