From fa42b34c0b12f14695098aeed152d699935a7114 Mon Sep 17 00:00:00 2001 From: sebthom Date: Sun, 8 Dec 2024 18:29:56 +0100 Subject: [PATCH] update softhsm repo URL --- README.md | 6 +++--- build-image.sh | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 013968c..271b44d 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ > **SoftHSM has been developed for development purposes only. Don't use in production!** -Docker image to run a virtual HSM (Hardware Security Module) network service based on [SoftHSM2](https://github.com/opendnssec/SoftHSMv2) and +Docker image to run a virtual HSM (Hardware Security Module) network service based on [SoftHSM2](https://github.com/softhsm/SoftHSMv2) and [pkcs11-proxy](https://github.com/SUNET/pkcs11-proxy/). Client applications can communicate with the HSM via TCP/TLS using libpkcs11-proxy.so and an OpenSSL TLS-PSK: @@ -267,8 +267,8 @@ This is a simple exercise to get you familiar with how a client container can in ## Resources - SoftHSM: - - website: https://www.opendnssec.org/softhsm/ - - sources: https://github.com/opendnssec/SoftHSMv2 + - website: https://www.softhsm.org/ + - sources: https://github.com/softhsm/SoftHSMv2 - tutorials: - [SoftHSM2 first steps to create slots](https://verschlüsselt.it/softhsm2-first-steps/) - pkcs11-proxy: diff --git a/build-image.sh b/build-image.sh index c7dd6de..e318c53 100644 --- a/build-image.sh +++ b/build-image.sh @@ -23,16 +23,16 @@ base_image_linux_flavor=${base_image_name%%:*} app_version=${SOFTHSM_VERSION:-latest} case $app_version in \ latest) - #app_version=$(curl -sSfL https://github.com/opendnssec/SoftHSMv2/releases/latest | sed -n "s/.*releases\/tag\/\([0-9]\.[0-9]\.[0-9]\)['\"].*/\1/p" | head -1) - app_version=$(curl -sSfL https://github.com/opendnssec/SoftHSMv2/tags | sed -n "s/.*releases\/tag\/\([0-9]\.[0-9]\.[0-9]\)['\"].*/\1/p" | head -1) - softhsm_source_url=https://codeload.github.com/opendnssec/SoftHSMv2/tar.gz/refs/tags/$app_version + #app_version=$(curl -sSfL https://github.com/softhsm/SoftHSMv2/releases/latest | sed -n "s/.*releases\/tag\/\([0-9]\.[0-9]\.[0-9]\)['\"].*/\1/p" | head -1) + app_version=$(curl -sSfL https://github.com/softhsm/SoftHSMv2/tags | sed -n "s/.*releases\/tag\/\([0-9]\.[0-9]\.[0-9]\)['\"].*/\1/p" | head -1) + softhsm_source_url=https://codeload.github.com/softhsm/SoftHSMv2/tar.gz/refs/tags/$app_version app_version_is_latest=1 ;; develop) - softhsm_source_url=https://codeload.github.com/opendnssec/SoftHSMv2/tar.gz/refs/heads/develop + softhsm_source_url=https://codeload.github.com/softhsm/SoftHSMv2/tar.gz/refs/heads/develop ;; *) - softhsm_source_url=https://codeload.github.com/opendnssec/SoftHSMv2/tar.gz/refs/tags/$app_version + softhsm_source_url=https://codeload.github.com/softhsm/SoftHSMv2/tar.gz/refs/tags/$app_version ;; esac echo "app_version=$app_version"