This is an automated email from the ASF dual-hosted git repository.
lahirujayathilake pushed a change to branch custos-signer
in repository https://gitbox.apache.org/repos/asf/airavata-custos.git
from 07a2406fd removed generate-source phase so plugin can use default
phase binding
new aa0918399 add requestCertificateMaterials method for direct
certificate material access
new d7091207c added spring cloud dependency and updated the versions to
align with spring boot 3.2
new 308fa0800 Fix SSH key/cert encoding, normalize client auth metadata,
and align Vault KV v2 handling
The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
pom.xml | 4 +-
signer/README.md | 31 ++
signer/signer-sdk-core/pom.xml | 7 -
.../custos/signer/sdk/CertificateMaterials.java | 61 ++++
.../org/apache/custos/signer/sdk/SshClient.java | 123 +++++---
.../custos/signer/sdk/client/SshSignerClient.java | 9 +-
.../apache/custos/signer/sdk/util/SshKeyUtils.java | 314 +++++++++++++++++++++
.../custos/signer/sdk/util/SshKeyUtilsTest.java | 202 +++++++++++++
signer/signer-service/pom.xml | 4 +
.../signer/service/auth/ClientAuthInterceptor.java | 30 +-
.../signer/service/ca/SshCertificateSigner.java | 175 ++++++++----
.../signer/service/grpc/SshSignerGrpcService.java | 4 +-
.../signer/service/policy/PolicyEnforcer.java | 7 +-
.../custos/signer/service/vault/OpenBaoClient.java | 186 +++++++++---
14 files changed, 997 insertions(+), 160 deletions(-)
create mode 100644
signer/signer-sdk-core/src/main/java/org/apache/custos/signer/sdk/CertificateMaterials.java
create mode 100644
signer/signer-sdk-core/src/main/java/org/apache/custos/signer/sdk/util/SshKeyUtils.java
create mode 100644
signer/signer-sdk-core/src/test/java/org/apache/custos/signer/sdk/util/SshKeyUtilsTest.java