Installing Libp11

  1. Make sure that openssl version 3.x is installed. If it is not, then install openssl 3.x from https://www.openssl.org/source/.

›_ Console

# openssl version -a 
image-3284631617-1.jpg

Openssl version

  1. Download the latest libp11 package from Releases · OpenSC/libp11 · GitHub.

›_ Console

# wget https://github.com/OpenSC/libp11/releases/download/libp110.4.12/libp11-0.4.12.tar.gz 
  1. Extract the compressed file.

›_ Console

# tar -xvf libp11-0.4.12.tar.gz 
  1. Go to libp11 directory, build, and install libp11using the following commands.

›_ Console

# cd libp11-0.4.12 

# ./configure prefix="/usr/local/libp11/" 

# make 

# make install 

# export LD_LIBRARY_PATH= /usr/local/libp11/lib/:$LD_LIBRARY_PATH 
image-3284631617-2.jpg

Libp11 installation

image-3284631617-3.jpg

Libp11 installation