Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
inc-meta/tools/mda-distribution-0.10.0/doc/wiki/setup-softhsm.sh
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
executable file
22 lines (17 sloc)
775 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/sh | |
# Clear any previous softhsm setup | |
rm -rf softhsm | |
mkdir -p softhsm/tokens | |
# Create configuration file | |
export SOFTHSM2_CONF=$PWD/softhsm/softhsm2.conf | |
echo "directories.tokendir = $PWD/softhsm/tokens" >$SOFTHSM2_CONF | |
# Initialise the token | |
softhsm2-util --init-token --slot 0 --label "test" \ | |
--so-pin 1234 \ | |
--pin 12341234 | |
# Load the credential | |
keytool -importkeystore --addprovider SunPKCS11 -providerarg path/to/input/pkcs11-softhsm.cfg \ | |
-srcstoretype pkcs12 -srckeystore path/to/secrets/self-signed.p12 -srcstorepass password \ | |
-deststoretype PKCS11 -destkeystore NONE -deststorepass 12341234 | |
keytool -list --addprovider SunPKCS11 -providerarg path/to/input/pkcs11-softhsm.cfg \ | |
-storetype PKCS11 -keystore NONE -storepass 12341234 |