summaryrefslogtreecommitdiff
path: root/tools/binman/btool/softhsm2_util.py
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2026-05-11 14:44:30 -0600
committerTom Rini <[email protected]>2026-05-11 14:44:30 -0600
commit07316f1fe7a14cc2da2d36e05436ab4fa255ef5f (patch)
tree088909ea3307731a1e5ed44fe5ffd59b515815cd /tools/binman/btool/softhsm2_util.py
parent1d8526fa7c1ba6843e8c72cb219a8dcb8e62da79 (diff)
parent08bcf962c5fe1d2690ac3ff6dd75d3963325476b (diff)
Merge tag 'dm-pull-11may26b' of git://git.denx.de/u-boot-dm
CI: https://source.denx.de/u-boot/custodians/u-boot-dm/-/pipelines/30065 - Add missing bintool docstrings - Minor patman fix - Fix small ACPI bug
Diffstat (limited to 'tools/binman/btool/softhsm2_util.py')
-rw-r--r--tools/binman/btool/softhsm2_util.py12
1 files changed, 11 insertions, 1 deletions
diff --git a/tools/binman/btool/softhsm2_util.py b/tools/binman/btool/softhsm2_util.py
index 869221d841d..fd2ff2d6473 100644
--- a/tools/binman/btool/softhsm2_util.py
+++ b/tools/binman/btool/softhsm2_util.py
@@ -7,7 +7,17 @@ from binman import bintool
class Bintoolsofthsm2_util(bintool.Bintool):
- """SoftHSMv2 -- support tool for libsofthsm2"""
+ """SoftHSMv2 -- support tool for libsofthsm2
+
+ This bintool wraps the `softhsm2-util` command shipped with SoftHSMv2 (a
+ software implementation of a PKCS#11 token). Binman uses this wrapper only
+ to check that softhsm2-util is installed (and to fetch it if missing); any
+ actual token initialisation or key import for signing FIT images or
+ capsules is done outside binman, typically via mkimage and the OpenSSL
+ PKCS#11 engine.
+
+ See https://www.opendnssec.org/softhsm/ for more details.
+ """
def __init__(self, name):
super().__init__('softhsm2-util',
'SoftHSMv2 support tool for libsofthsm2',