From 8f790d068e2243407481612ab75d36c3bd1537aa Mon Sep 17 00:00:00 2001 From: Hakky54 Date: Thu, 18 Sep 2025 17:09:40 +0200 Subject: [PATCH] Bump and rename sslcontext-kicktart to ayza --- mtls-examples/java/README.md | 2 +- mtls-examples/java/pom.xml | 8 ++++---- .../leantech/dev/apacheclient/MtlsUsingApacheClient.java | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/mtls-examples/java/README.md b/mtls-examples/java/README.md index a4e73ee..25cd36a 100644 --- a/mtls-examples/java/README.md +++ b/mtls-examples/java/README.md @@ -31,7 +31,7 @@ If you want to run this template, you will need a set of credentials from Lean T 1. Again, download the file and unzip it. At this point, there are two options: -1. Create the `keystore` required to make a secure connection in memory (`src/main/java/me/lean/tech/dev/apacheclient/MtlsUsingApacheClient.java`), using a [helper library](https://github.com/Hakky54/sslcontext-kickstart) to read lean certificates: +1. Create the `keystore` required to make a secure connection in memory (`src/main/java/me/lean/tech/dev/apacheclient/MtlsUsingApacheClient.java`), using a [helper library](https://github.com/Hakky54/ayza) to read lean certificates: 1. In the [application.properties](src/main/resources/application.properties), 1. replace the path of certificates `` with the absolute path of `certs` folder 2. replace the mock certificates filenames: diff --git a/mtls-examples/java/pom.xml b/mtls-examples/java/pom.xml index 39f407a..bc1e225 100644 --- a/mtls-examples/java/pom.xml +++ b/mtls-examples/java/pom.xml @@ -29,13 +29,13 @@ io.github.hakky54 - sslcontext-kickstart - 7.2.0 + ayza + 10.0.0 io.github.hakky54 - sslcontext-kickstart-for-pem - 7.2.0 + ayza-for-pem + 10.0.0 diff --git a/mtls-examples/java/src/main/java/me/leantech/dev/apacheclient/MtlsUsingApacheClient.java b/mtls-examples/java/src/main/java/me/leantech/dev/apacheclient/MtlsUsingApacheClient.java index caa0a72..8af8d7b 100644 --- a/mtls-examples/java/src/main/java/me/leantech/dev/apacheclient/MtlsUsingApacheClient.java +++ b/mtls-examples/java/src/main/java/me/leantech/dev/apacheclient/MtlsUsingApacheClient.java @@ -2,7 +2,7 @@ import lombok.extern.slf4j.Slf4j; import nl.altindag.ssl.util.CertificateUtils; -import nl.altindag.ssl.util.PemUtils; +import nl.altindag.ssl.pem.util.PemUtils; import org.apache.http.HttpEntity; import org.apache.http.HttpHeaders; import org.apache.http.client.methods.CloseableHttpResponse;