How to Install and Uninstall ed25519-java.noarch Package on Fedora 36

Last updated: October 09,2024

1. Install "ed25519-java.noarch" package

This is a short guide on how to install ed25519-java.noarch on Fedora 36

$ sudo dnf update $ sudo dnf install ed25519-java.noarch

2. Uninstall "ed25519-java.noarch" package

Here is a brief guide to show you how to uninstall ed25519-java.noarch on Fedora 36:

$ sudo dnf remove ed25519-java.noarch $ sudo dnf autoremove

3. Information about the ed25519-java.noarch package on Fedora 36

Last metadata expiration check: 4:49:49 ago on Thu Sep 8 08:04:50 2022.
Available Packages
Name : ed25519-java
Version : 0.3.0
Release : 14.fc36
Architecture : noarch
Size : 71 k
Source : ed25519-java-0.3.0-14.fc36.src.rpm
Repository : fedora
Summary : Implementation of EdDSA (Ed25519) in Java
URL : https://github.com/str4d/ed25519-java
License : CC0
Description : This is an implementation of EdDSA in Java. Structurally, it
: is based on the ref10 implementation in SUPERCOP (see
: http://ed25519.cr.yp.to/software.html).
:
: 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.