How To Install ed25519-java on Fedora 36

In this tutorial we learn how to install ed25519-java in Fedora 36. ed25519-java is Implementation of EdDSA (Ed25519) in Java

Introduction

In this tutorial we learn how to install ed25519-java on Fedora 36.

What is ed25519-java

This is an implementation of EdDSA in Java. Structurally, it is based on the ref10 implementation in SUPERCOP (see http There are two internal implementations * A port of the radix-2^51 operations in ref10 - fast and constant-time, but only useful for Ed25519. * A generic version using BigIntegers for calculation - a bit slower and not constant-time, but compatible with any EdDSA parameter specification.

We can use yum or dnf to install ed25519-java on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install ed25519-java.

Install ed25519-java on Fedora 36 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

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

sudo dnf -y install ed25519-java

Install ed25519-java on Fedora 36 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

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

sudo yum -y install ed25519-java

How To Uninstall ed25519-java on Fedora 36

To uninstall only the ed25519-java package we can use the following command:

sudo dnf remove ed25519-java

ed25519-java Package Contents on Fedora 36

/usr/share/doc/ed25519-java
/usr/share/doc/ed25519-java/README.md
/usr/share/java/ed25519-java.jar
/usr/share/java/eddsa.jar
/usr/share/licenses/ed25519-java
/usr/share/licenses/ed25519-java/LICENSE.txt
/usr/share/maven-metadata/ed25519-java.xml
/usr/share/maven-poms/ed25519-java.pom
/usr/share/maven-poms/eddsa.pom

References

Summary

In this tutorial we learn how to install ed25519-java on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).