How To Install libauth-yubikey-decrypter-perl on Debian 12

Learn how to install libauth-yubikey-decrypter-perl on Debian 12 with this tutorial. libauth-yubikey-decrypter-perl is yubikey token output decryptor

Introduction

In this tutorial we learn how to install libauth-yubikey-decrypter-perl on Debian 12.

What is libauth-yubikey-decrypter-perl

libauth-yubikey-decrypter-perl is:

Auth::Yubikey_Decrypter is a Perl module to decrypt the AES output of Yubikey tokens.

Please note that this module does not perform authentication. It is a required component to decrypt the token first before authentication can be performed.

There are three methods to install libauth-yubikey-decrypter-perl on Debian 12. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libauth-yubikey-decrypter-perl Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install libauth-yubikey-decrypter-perl using apt-get by running the following command:

sudo apt-get -y install libauth-yubikey-decrypter-perl

Install libauth-yubikey-decrypter-perl Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libauth-yubikey-decrypter-perl using apt by running the following command:

sudo apt -y install libauth-yubikey-decrypter-perl

Install libauth-yubikey-decrypter-perl Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install libauth-yubikey-decrypter-perl using aptitude by running the following command:

sudo aptitude -y install libauth-yubikey-decrypter-perl

How To Uninstall libauth-yubikey-decrypter-perl on Debian 12

To uninstall only the libauth-yubikey-decrypter-perl package we can use the following command:

sudo apt-get remove libauth-yubikey-decrypter-perl

Uninstall libauth-yubikey-decrypter-perl And Its Dependencies

To uninstall libauth-yubikey-decrypter-perl and its dependencies that are no longer needed by Debian 12, we can use the command below:

sudo apt-get -y autoremove libauth-yubikey-decrypter-perl

Remove libauth-yubikey-decrypter-perl Configurations and Data

To remove libauth-yubikey-decrypter-perl configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge libauth-yubikey-decrypter-perl

Remove libauth-yubikey-decrypter-perl configuration, data, and all of its dependencies

We can use the following command to remove libauth-yubikey-decrypter-perl configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libauth-yubikey-decrypter-perl

Dependencies

libauth-yubikey-decrypter-perl have the following dependencies:

References

Summary

In this tutorial we learn how to install libauth-yubikey-decrypter-perl package on Debian 12 using different package management tools: apt, apt-get and aptitude.