How To Install opencryptoki-swtok on Rocky Linux 8

In this tutorial we learn how to install opencryptoki-swtok on Rocky Linux 8. opencryptoki-swtok is The software token implementation for opencryptoki

Introduction

In this tutorial we learn how to install opencryptoki-swtok on Rocky Linux 8.

What is opencryptoki-swtok

Opencryptoki implements the PKCS#11 specification v2.11 for a set of cryptographic hardware, such as IBM 4764 and 4765 crypto cards, and the Trusted Platform Module (TPM) chip. Opencryptoki also brings a software token implementation that can be used without any cryptographic hardware. This package brings the software token implementation to use opencryptoki without any specific cryptographic hardware.

We can use yum or dnf to install opencryptoki-swtok on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install opencryptoki-swtok.

Install opencryptoki-swtok on Rocky Linux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install opencryptoki-swtok using dnf by running the following command:

sudo dnf -y install opencryptoki-swtok

Install opencryptoki-swtok on Rocky Linux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install opencryptoki-swtok using yum by running the following command:

sudo yum -y install opencryptoki-swtok

How To Uninstall opencryptoki-swtok on Rocky Linux 8

To uninstall only the opencryptoki-swtok package we can use the following command:

sudo dnf remove opencryptoki-swtok

opencryptoki-swtok Package Contents on Rocky Linux 8

/usr/lib/.build-id
/usr/lib/.build-id/18
/usr/lib/.build-id/18/35f5eb52bf38dc17a439f2241328ebfe9cdf37
/usr/lib64/opencryptoki/stdll/PKCS11_SW.so
/usr/lib64/opencryptoki/stdll/libpkcs11_sw.so
/usr/lib64/opencryptoki/stdll/libpkcs11_sw.so.0
/usr/lib64/opencryptoki/stdll/libpkcs11_sw.so.0.0.0
/var/lib/opencryptoki/swtok
/var/lib/opencryptoki/swtok/TOK_OBJ

References

Summary

In this tutorial we learn how to install opencryptoki-swtok on Rocky Linux 8 using yum and dnf.