How To Install golang-github-elithrar-simple-scrypt-dev on Kali Linux

In this tutorial we learn how to install golang-github-elithrar-simple-scrypt-dev on Kali Linux. golang-github-elithrar-simple-scrypt-dev is various purpose password hashes library using the scrypt KDF

Introduction

In this tutorial we learn how to install golang-github-elithrar-simple-scrypt-dev on Kali Linux.

What is golang-github-elithrar-simple-scrypt-dev

golang-github-elithrar-simple-scrypt-dev is:

simple-scrypt provides a convenience wrapper around Go’s existing scrypt package that makes it easier to securely derive strong keys (“hash user passwords”). This library allows you to: - Generate a scrypt derived key with a crytographically secure salt and sane default parameters for N, r and p. - Upgrade the parameters used to generate keys as hardware improves by storing them with the derived key (the scrypt spec. doesn’t allow for this by default). - Provide your own parameters (if you wish to). The API closely mirrors Go’s bcrypt (https://golang.org/x/crypto/bcrypt) library in an effort to make it easy to migrate??and because it’s an easy to grok API.

There are three methods to install golang-github-elithrar-simple-scrypt-dev on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install golang-github-elithrar-simple-scrypt-dev Using apt-get

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

sudo apt-get update

After updating apt database, We can install golang-github-elithrar-simple-scrypt-dev using apt-get by running the following command:

sudo apt-get -y install golang-github-elithrar-simple-scrypt-dev

Install golang-github-elithrar-simple-scrypt-dev Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install golang-github-elithrar-simple-scrypt-dev using apt by running the following command:

sudo apt -y install golang-github-elithrar-simple-scrypt-dev

Install golang-github-elithrar-simple-scrypt-dev Using aptitude

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

sudo aptitude update

After updating apt database, We can install golang-github-elithrar-simple-scrypt-dev using aptitude by running the following command:

sudo aptitude -y install golang-github-elithrar-simple-scrypt-dev

How To Uninstall golang-github-elithrar-simple-scrypt-dev on Kali Linux

To uninstall only the golang-github-elithrar-simple-scrypt-dev package we can use the following command:

sudo apt-get remove golang-github-elithrar-simple-scrypt-dev

Uninstall golang-github-elithrar-simple-scrypt-dev And Its Dependencies

To uninstall golang-github-elithrar-simple-scrypt-dev and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove golang-github-elithrar-simple-scrypt-dev

Remove golang-github-elithrar-simple-scrypt-dev Configurations and Data

To remove golang-github-elithrar-simple-scrypt-dev configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge golang-github-elithrar-simple-scrypt-dev

Remove golang-github-elithrar-simple-scrypt-dev configuration, data, and all of its dependencies

We can use the following command to remove golang-github-elithrar-simple-scrypt-dev configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge golang-github-elithrar-simple-scrypt-dev

Dependencies

golang-github-elithrar-simple-scrypt-dev have the following dependencies:

References

Summary

In this tutorial we learn how to install golang-github-elithrar-simple-scrypt-dev package on Kali Linux using different package management tools: apt, apt-get and aptitude.