Skip to content

Commit fa42b34

Browse files
committed
update softhsm repo URL
1 parent 1de8172 commit fa42b34

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
> **SoftHSM has been developed for development purposes only. Don't use in production!**
1818
19-
Docker image to run a virtual HSM (Hardware Security Module) network service based on [SoftHSM2](https://github.com/opendnssec/SoftHSMv2) and
19+
Docker image to run a virtual HSM (Hardware Security Module) network service based on [SoftHSM2](https://github.com/softhsm/SoftHSMv2) and
2020
[pkcs11-proxy](https://github.com/SUNET/pkcs11-proxy/).
2121

2222
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
267267
## <a name="resources"></a>Resources
268268

269269
- SoftHSM:
270-
- website: https://www.opendnssec.org/softhsm/
271-
- sources: https://github.com/opendnssec/SoftHSMv2
270+
- website: https://www.softhsm.org/
271+
- sources: https://github.com/softhsm/SoftHSMv2
272272
- tutorials:
273273
- [SoftHSM2 first steps to create slots](https://verschlüsselt.it/softhsm2-first-steps/)
274274
- pkcs11-proxy:

build-image.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ base_image_linux_flavor=${base_image_name%%:*}
2323
app_version=${SOFTHSM_VERSION:-latest}
2424
case $app_version in \
2525
latest)
26-
#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)
27-
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)
28-
softhsm_source_url=https://codeload.github.com/opendnssec/SoftHSMv2/tar.gz/refs/tags/$app_version
26+
#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)
27+
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)
28+
softhsm_source_url=https://codeload.github.com/softhsm/SoftHSMv2/tar.gz/refs/tags/$app_version
2929
app_version_is_latest=1
3030
;;
3131
develop)
32-
softhsm_source_url=https://codeload.github.com/opendnssec/SoftHSMv2/tar.gz/refs/heads/develop
32+
softhsm_source_url=https://codeload.github.com/softhsm/SoftHSMv2/tar.gz/refs/heads/develop
3333
;;
3434
*)
35-
softhsm_source_url=https://codeload.github.com/opendnssec/SoftHSMv2/tar.gz/refs/tags/$app_version
35+
softhsm_source_url=https://codeload.github.com/softhsm/SoftHSMv2/tar.gz/refs/tags/$app_version
3636
;;
3737
esac
3838
echo "app_version=$app_version"

0 commit comments

Comments
 (0)