14
Min Read

New CloudHSM Signer Services: Store, Manage, and Use Cryptographic Keys

New CloudHSM Signer Services: Store, Manage, and Use Cryptographic Keys
Update
Since this post was written, Hyperledger FireFly has reached 1.0. Learn more here!

A question that is raised frequently in conversations with our customers is Kaleido's support for "off-platform" keys. Our customers also love the simplicity of using Kaleido's Gateway APIs and the benefits it provides in terms of abstracting away the complexities around signing, nonce management, and transaction error handling. 

HSMs (Hardware Security Modules) are a well-established industry standard that provide a secure way to store, manage, and use cryptographic keys for a specific set of cryptographic operations. So we set about building an interface that could talk to an HSM which can be provisioned in the customer's preferred cloud provider or deployed "on-prem", running in their own datacenter. The benefit to the customer is that they can use all the features of Kaleido and have the HSM sign transactions using keys that are stored in it.

The Cloud HSM Signer Services interface with the following HSM providers:

Azure Key Vault

Microsoft Azure Key Vault is a FIPS 140-2 Level 2 validated HSM (hardware and firmware). Azure Key Vault provides the ability for users to import and/or generate keys that are stored in Key Vault. With Key Vault, Microsoft doesn’t see or extract the user's keys. Key usage can be monitored and audited.

AWS Cloud HSM

AWS CloudHSM enables users to generate and use encryption keys on a FIPS 140-2 Level 3 validated hardware. CloudHSM protects keys with exclusive, single-tenant access to tamper-resistant HSM instances in the customer's own Amazon Virtual Private Cloud (VPC). AWS has no visibility or access to keys stored in AWS Cloud HSM.

Hashicorp Vault

Although Hashicorp Vault is not an HSM, it is a software that allows secure storage of encryption keys and policy-based access control to those keys. Vault is straightforward to set up "on-prem" by customers or can be set up in the cloud of their choice. We leveraged Vault's rich plugin-based architecture by developing an open-source plugin that is used to sign a transaction sent over secure HTTP to the vault using an account key of the curve secp256k1 that is stored in Vault. The plugin is designed to allow client access policies to be defined for user-level interactions (list key addresses, sign transactions) vs. administrator-level interactions (create/view/delete/list-keys, import/export-keys). This plugin has been tested with the Vault Open Source version 1.4.0.

CloudHSM Provider Selection

We recommend customers consider the following aspects before choosing a Cloud HSM provider. Of course, a Kaleido environment can run multiple instances of Cloud HSM Signer service if customers wish to operate with signing keys distributed across one or more Cloud HSM providers.

  • Cost - The cost model is quite different for AWS, Azure, and Hashicorp Vault [1, 2]. For AWS Cloud HSM, pricing is a flat hourly fee, whereas for Azure Key Vault, pricing is based on usage (number of keys, number of signing requests). For Hashicorp Vault, if one were to use the open-source version of the software, the software is free and the cost is whatever it takes to run the software on a server.
  • Standards compliance Level - Since AWS Cloud HSM and Azure Key Vault are services that carry different levels of certification, if your organization has specific mandates or requirements to adhere to, this is a point to consider.
Provider Compliance Level Documentation Link
Azure Key Vault FIPS 140-2 Level 2 validated https://azure.microsoft.com/en-us/services/key-vault/
AWS Cloud HSM FIPS 140-2 Level 3 validated https://aws.amazon.com/cloudhsm
Hashicorp Vault Enterprise (version 0.9 and above) Conformant with FIPS 140-2 standards https://www.hashicorp.com/vault-compliance

Setup

The high-level steps involved in using the HSM Signer Wallet is as follows:

  1. Create and configure the Cloud HSM backend service (Azure Key Vault/AWS Cloud HSM/Hashicorp Vault). Skip to the next step if you already have a Cloud HSM backend available.
  2. Create/Import the Keys to be used for signing transactions. The keys must be created with appropriate permissions whereby external parties such as Kaleido should not have access to the private key. Refer to the documentation below for more details. above will never leave the backend where these are created. Skip to the next step if you already have signing keys setup in your Cloud HSM backend.
  3. In your Kaleido environment, create a Cloud HSM Configuration that provides details of connection & authentication parameters to the backend
  4. In your Kaleido environment, create a Cloud HSM Wallet (Signer), which fetches the account addresses from the backend and generates Transaction Signing requests to the backend
Cloud HSM Configuration setup instruction

Setup Cloud HSM Backend

If you do not have a Cloud HSM backend configured and set up with keys that are to be used for signing transactions, check out the following links that provide details of how to set up and configure the backend of your choice.

Cloud HSM Configuration

In your Kaleido environment, you need to create a Cloud Configuration of type Cloud HSM that provides connection/authentication parameters to reach your Cloud HSM backend. In your environment dashboard click on the following in the left-hand nav:

Manage Resources -> Cloud Configurations -> Cloud HSM 

Pick the membership in which you would like to create the Cloud HSM configuration. The configuration will then be available to associate with any Cloud HSM Signer created in this environment, under the same membership.

Cloud HSM Configuration instruction
Enter the details of the authentication/connection parameters to connect to your Cloud HSM backend provider.

Cloud HSM Wallet

The final step is to create a Cloud HSM Wallet that uses a Cloud HSM Configuration you created in the previous step. You will need to have at least one node in the same membership as the Cloud HSM Wallet you are about to create. The wallet is bound to the node for any access to the blockchain such as to submit transactions. 

Once the wallet is active, you can sign transactions using the Cloud HSM Wallet by specifying the account address associated with a key that is stored in the Cloud HSM backend. The Cloud HSM Wallet will never be able to download private keys from the Cloud HSM backend. The wallet will generate signing requests to the Cloud HSM backend by specifying the address associated with the secp256k1 key.

In your environment dashboard click on the following in the left-hand nav:

Manage Resources -> Key Management -> Cloud HSM Wallets

Cloud HSM Wallet instruction

Select a Membership in which the Cloud HSM Wallet is to be created and select the Cloud HSM Configuration that should be used by the wallet. Once the wallet is created, it attempts to connect to the Cloud HSM backend and retrieves the list of account addresses with keys of type secp256k1, the Elliptic Curve type used in ethereum. To view account addresses, Click on View Wallet for the wallet you created and in the Cloud HSM dashboard, click on the following in the left nav:

Cloud HSM -> Wallet

Cloud HSM Wallet accounts checking

If you added keys to the cloud HSM backend after the Cloud HSM Wallet was created, you need to click on Refresh Accounts button in this page to let the Cloud HSM Wallet query the updated account list from the backend

Usage

Transactions can be submitted directly to the Cloud HSM Wallet or by referencing one of the HSM stored addresses as a Signing Address when deploying contracts/submitting transactions in Gateway APIs and Tokens/Digital Assets workflows. When a transaction is received for signing by Cloud HSM wallet, the wallet:

  • Validates that the from address in the transaction is present in the list of addresses retrieved from the Cloud HSM backend.
  • Calculates the nonce for the address by interacting with the node and constructs the transaction payload for signing.
  • Generates a sign request to the Cloud HSM backend.
  • After receiving a successful response from the Cloud HSM backend, the wallet submits the transaction to the chain using the bound node.

Transaction Submission

Transactions can be submitted to the Cloud HSM Wallet’s RPC/WSS URLs (available via the service’s /status API) with a from address that is one of the addresses in the Wallet.

Gateway APIs

Use a Cloud HSM address in the kld-from field in the API request or the Swagger UI when submitting a transaction to a Gateway API. This will result in the transaction being signed using the key associated with the address.

Digital Assets

When deploying Tokens, the UI provides an option to pick the Signing Account where the list of addresses from each Wallet is displayed. Pick an address from a Cloud HSM Wallet so that the Token deployment is signed by the key associated with an address in the Cloud HSM Wallet

Digital Assets selection

References

  1. Azure Key Vault Pricing
  2. AWS Cloud HSM Pricing
  3. AWS Cloud HSM Configuration (Backend/Kaleido)
  4. Azure Key Vault Configuration (Backend/Kaleido)
  5. Hashicorp Vault Configuration (Backend/Kaleido)

Interested in Blockchain?

Start learning blockchain and creating enterprise solutions today with a free Kaleido account!

Create Free Account
Don't forget to share this article!
Interested in Blockchain?

Start learning blockchain and creating enterprise solutions today with a free Kaleido account!

Create Free Account

Related Posts

Comparing Hyperledger Fabric and Hyperledger Besu: A Deep Dive

Powerhouse Enterprise Protocols: A Comparison of Hyperledger Fabric vs Hyperledger Besu

How to Manage Digital Asset with Our Next-Gen Asset Manager Service

Asset Manager Service: A Next-Gen Engine for Managing Digital Asset & Tokenization Projects

Marc Lewis
Managing Editor
Kaleido Q1 Product Update: Next-Gen Tooling for the Reality of Complex Real World Assets

Kaleido Q1 Product Update: Next-Gen Tooling for the Reality of Complex Real World Assets

Steve Cerveny
Founder & CEO

Blockchain made radically simple for the enterprise

No Credit Card Required
ISO27K & SOC2 Type 2 Compliant
Free Training & Support