feat(pki-server): add multi-CA security foundation

Add the durable multi-authority realm, scoped default-deny authorization,
approval and break-glass workflows, auditor views and disclosure policy.

Enforce all administration through the transport-neutral secured operation
gateway while preserving immutable PKI authority and future HTTP reuse.
This commit is contained in:
2026-08-04 18:46:00 +02:00
parent e997996316
commit 8a5cbb61b3
30 changed files with 4791 additions and 6 deletions

18
pki-server/build.gradle Normal file
View File

@@ -0,0 +1,18 @@
plugins {
id 'buildlogic.java-library-conventions'
id 'com.palantir.git-version'
}
group = 'org.egothor'
dependencies {
api project(':pki')
implementation project(':lib')
implementation platform('tools.jackson:jackson-bom:3.1.5')
implementation 'tools.jackson.core:jackson-core'
}
javadoc {
options.links("https://www.egothor.org/javadoc/zeroecho/lib")
options.links("https://www.egothor.org/javadoc/zeroecho/pki")
}