top of page
Writer's pictureNOURA ALSHAREEF

Exploring HSM Interactions: A Journey through SoftHSM

In our previous article, "HSM Overview," we delved into the theoretical concepts of Hardware Security Modules (HSMs) and HSM partitions for security and isolation. Now, let's take a closer look at the practical aspects of interacting with HSMs. Navigating the layers and concepts involved in HSM interactions can be complex, but fear not! In this article, we will guide you through the intricacies and explore an exciting alternative called SoftHSM—a software-based solution that provides a virtual representation of a PKCS#11 device. Join us on this journey as we unravel the layers of HSM interactions and unlock the possibilities offered by SoftHSM.


To lay the foundation for understanding these interactions, let's first explore the PKCS#11 Standard.


The PKCS#11 Standard

PKCS#11, a cryptography standard maintained by the OASIS PKCS 11 Technical Committee, defines the Cryptoki API. This API serves as a means for accessing cryptographic information and operations performed by Cryptographic Tokens, including HSMs. By presenting a unified view of tokens to applications, PKCS#11 paves the way for accessing smart cards and various cryptographic hardware, ensuring secure and standardized functionality.


For a deeper understanding, I strongly encourage you to explore the insightful resources provided by OASIS https://docs.oasis-open.org/pkcs11/pkcs11-base/


Integration with HSM Devices in Java and .NET Environments

In Java, the Sun PKCS#11 provider acts as a bridge between the Java Cryptography Architecture (JCA) and Java Cryptography Extension (JCE) APIs and the PKCS#11 module. This allows for seamless integration and efficient interaction with HSM devices. The connection heavily relies on the vendor-provided shared-object library, which enables Java to effectively utilize the functionalities of HSM devices.


In the .NET environment, Pkcs11Interop is a C# managed library specifically designed for .NET applications that require interaction with HSM devices. This library provides complete access to the PKCS#11 API within the .NET environment, enabling smooth communication with HSM devices and facilitating secure cryptographic operations.



Layers from App to HSM

To further enhance our understanding of HSM interactions, we don't necessarily need access to a physical HSM. Instead, we can leverage the capabilities of SoftHSM—a software-based alternative that emulates the functionalities of an HSM.


SoftHSM

softHSM logo

SoftHSM is a software-based implementation of a generic PKCS#11 device. It offers a unique platform for exploring and experimenting with PKCS#11 functionality without the need for a physical HSM. This virtual representation allows users to simulate HSM-like capabilities, ensuring secure interactions within their environments.


SoftHSM, as part of the OpenDNSSEC project, provides a software-based alternative to physical HSM devices. It allows OpenDNSSEC users to store cryptographic keys securely and perform cryptographic operations within a virtual environment.

Getting Started


The first step is to install SoftHSM. Just open your Terminal and execute the following command:

brew install softhsm

The installation provides necessary command line tools and the libsofthsm2.so, shared object file—SoftHSM's native PKCS#11 implementation. Generally, /opt/homebrew/Cellar/softhsm/2.6.1/lib/softhsm/libsofthsm2.so is where you're likely to find it.

Creating Your First Cryptographic Token

The power of SoftHSM comes into play when you create a new cryptographic token. You can accomplish this with the softhsm2-util command line utility. By providing the desired slot number and label, you can initialize a token, setting up a Security Officer PIN and a User PIN for managing the token and facilitating application access. Even though SoftHSM doesn't support straightforward partition creation found in some hardware-based HSMs, you can still achieve logical separation by utilizing different slots. Consider each slot as a unique cryptographic token instance; this allows you to have precise control over specific sets of keys and operations.

softhsm2-util --init-token --slot 0 --label "App1Token"

This command initializes a token in slot 0 with the label "App1Token". You will be prompted to set a Security Officer PIN (used for managing the token) and a User PIN (used for accessing the token from applications).

=== SO PIN (4-255 characters) ===
Please enter SO PIN: ****
Please reenter SO PIN: ****
=== User PIN (4-255 characters) ===
Please enter user PIN: ****
Please reenter user PIN: ****

The token has been initialized and is reassigned to slot 1870032949


Validating Your SoftHSM Installation

softhsm2-util --show-slots

Once you've entered the above command, you should see an output that resembles the following:

Available slots:
Slot 1870032949
    Slot info:
       Description:      SoftHSM slot ID 0x6f767035                                     
       Manufacturer ID:  SoftHSM project                 
        Hardware version: 2.6
        Firmware version: 2.6
        Token present:    yes
    Token info:
       Manufacturer ID:  SoftHSM project                 
       Model:            SoftHSM v2      
        Hardware version: 2.6
        Firmware version: 2.6
        Serial number:    5ba5e8f56f767035
       Initialized:      yes
        User PIN init.:   yes
       Label:            App1Token
Slot 1
    Slot info:
       Description:      SoftHSM slot ID 0x1                                            
       Manufacturer ID:  SoftHSM project                 
        Hardware version: 2.6
        Firmware version: 2.6
        Token present:    yes
    Token info:
       Manufacturer ID:  SoftHSM project                 
       Model:            SoftHSM v2      
        Hardware version: 2.6
        Firmware version: 2.6
        Serial number:                    
       Initialized:      no
        User PIN init.:   no
       Label:       

Once the installation process has been completed, you'll be able to view the specifics of the SoftHSM token you initialized and reassigned to slot 1870032949

Congratulations on successfully setting up SoftHSM! You now have everything in place and are ready to utilize it in your applications that support PKCS#11 for secure cryptographic operations. If you're eager to get started, let's dive right in and explore the possibilities that SoftHSM brings to the table.


Interacting with HSM


Interacting with Hardware Security Modules (HSM) through Java or .NET code brings numerous benefits. However, before diving into the complexities of coding, having a convenient command-line tool can be incredibly helpful. In this regard, pkcs11-tool proves to be an invaluable asset.

pkcs11-tool serves as a valuable tool that provides similar capabilities to the Sun PKCS#11 provider and Pkcs11Interop library. All three tools enable interactions with PKCS#11-compliant devices and software tokens. While pkcs11-tool operates as a command-line utility, the Sun PKCS#11 provider and Pkcs11Interop are libraries designed for Java and .NET applications, respectively, enabling seamless integration with PKCS#11 devices and tokens.

Despite their different implementations and programming language targets, these tools share the common goal of facilitating interactions with PKCS#11-compliant devices and tokens. This ensures flexibility in choosing the most suitable option based on your programming language preferences and the specific requirements of your project.


Alright, let's follow the outlined steps for installation:

1- Install the OpenSC package, which provides the command-line utility for PKCS#11 interactions:

brew install opensc

2- To generate an RSA key pair using pkcs11-tool with SoftHSM, use the following command:

pkcs11-tool --module /opt/homebrew/Cellar/softhsm/2.6.1/lib/softhsm/libsofthsm2.so --slot 1870032949 --login --keypairgen --key-type rsa:2048 --label "MyRSAKey" --pin <user pin>

In the command above:

--module: Specifies the path to the libsofthsm2.so library file, which connects pkcs11-tool to SoftHSM.

--slot: Indicates the slot number assigned during token initialization, helping pkcs11-tool identify the specific token or device.

--label: Specifies the label of the cryptographic key pair you want to access, assisting pkcs11-tool in locating the desired keys.

--pin: Replace this with the User PIN you set during token initialization. It serves as the password or authentication for accessing the token or device.


Well done!


To list the keys inside a slot of SoftHSM using pkcs11-tool, you can use the following command:

pkcs11-tool --module /opt/homebrew/Cellar/softhsm/2.6.1/lib/softhsm/libsofthsm2.so --slot 1870032949  --list-objects

You should expect your result to look something like this:

Public Key Object; RSA 2048 bits
 label:      MyRSAKey
 Usage:      encrypt, verify, wrap
 Access:     local
Public Key Object; RSA 2048 bits
 label:      MyRSAKey
 Usage:      encrypt, verify, wrap
  Access:    local

You might have noticed that the private keys didn't turn up, right? Well, that's because there's a step involving a required login. Why not give it another shot, this time armed with your PIN?

sudo pkcs11-tool --module /opt/homebrew/Cellar/softhsm/2.6.1/lib/softhsm/libsofthsm2.so --slot 1870032949 --list-objects --login --pin <user-pin>

Great! You're geared to navigate through more sophisticated procedures like encryption, decryption, and signing. Remember, avid practice is your ticket to proficiency, so continue your exploration until the process becomes second nature.

Type 'pkcs11-tool' on the command line. This will bring up a list of options that could stimulate your curiosity and inspire you to experiment with additional commands.


To learn more about SoftHSM and gain a better understanding of its capabilities, I recommend visiting their official website at https://www.opendnssec.org/softhsm/. The website provides detailed information, documentation, and resources related to SoftHSM, including its background, features, installation instructions, bug reporting, news updates, and development information.


I hope you enjoyed this article ♡

135 views0 comments

Recent Posts

See All

Comments


bottom of page