How To Install R-jose on Fedora 36

In this tutorial we learn how to install R-jose in Fedora 36. R-jose is JavaScript Object Signing and Encryption

Introduction

In this tutorial we learn how to install R-jose on Fedora 36.

What is R-jose

Read and write JSON Web Keys (JWK, rfc7517), generate and verify JSON Web Signatures (JWS, rfc7515) and encode/decode JSON Web Tokens (JWT, rfc7519). These standards provide modern signing and encryption formats that are the basis for services like OAuth 2.0 or LetsEncrypt and are natively supported by browsers via the JavaScript WebCryptoAPI.

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

Install R-jose 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 R-jose using dnf by running the following command:

sudo dnf -y install R-jose

Install R-jose 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 R-jose using yum by running the following command:

sudo yum -y install R-jose

How To Uninstall R-jose on Fedora 36

To uninstall only the R-jose package we can use the following command:

sudo dnf remove R-jose

R-jose Package Contents on Fedora 36

/usr/share/R/library/jose
/usr/share/R/library/jose/DESCRIPTION
/usr/share/R/library/jose/INDEX
/usr/share/R/library/jose/LICENSE
/usr/share/R/library/jose/Meta
/usr/share/R/library/jose/Meta/Rd.rds
/usr/share/R/library/jose/Meta/features.rds
/usr/share/R/library/jose/Meta/hsearch.rds
/usr/share/R/library/jose/Meta/links.rds
/usr/share/R/library/jose/Meta/nsInfo.rds
/usr/share/R/library/jose/Meta/package.rds
/usr/share/R/library/jose/Meta/vignette.rds
/usr/share/R/library/jose/NAMESPACE
/usr/share/R/library/jose/NEWS
/usr/share/R/library/jose/R
/usr/share/R/library/jose/R/jose
/usr/share/R/library/jose/R/jose.rdb
/usr/share/R/library/jose/R/jose.rdx
/usr/share/R/library/jose/WORDLIST
/usr/share/R/library/jose/doc
/usr/share/R/library/jose/doc/index.html
/usr/share/R/library/jose/doc/jwk.R
/usr/share/R/library/jose/doc/jwk.Rmd
/usr/share/R/library/jose/doc/jwk.html
/usr/share/R/library/jose/doc/jwt.R
/usr/share/R/library/jose/doc/jwt.Rmd
/usr/share/R/library/jose/doc/jwt.html
/usr/share/R/library/jose/help
/usr/share/R/library/jose/help/AnIndex
/usr/share/R/library/jose/help/aliases.rds
/usr/share/R/library/jose/help/base64url_decode.html
/usr/share/R/library/jose/help/base64url_encode.html
/usr/share/R/library/jose/help/jose.html
/usr/share/R/library/jose/help/jose.rdb
/usr/share/R/library/jose/help/jose.rdx
/usr/share/R/library/jose/help/jwk.html
/usr/share/R/library/jose/help/jwk_read.html
/usr/share/R/library/jose/help/jwk_write.html
/usr/share/R/library/jose/help/jwt.html
/usr/share/R/library/jose/help/jwt_claim.html
/usr/share/R/library/jose/help/jwt_decode_hmac.html
/usr/share/R/library/jose/help/jwt_decode_sig.html
/usr/share/R/library/jose/help/jwt_encode.html
/usr/share/R/library/jose/help/jwt_encode_hmac.html
/usr/share/R/library/jose/help/jwt_encode_sig.html
/usr/share/R/library/jose/help/jwt_split.html
/usr/share/R/library/jose/help/paths.rds
/usr/share/R/library/jose/help/read_jwk.html
/usr/share/R/library/jose/help/write_jwk.html
/usr/share/R/library/jose/html
/usr/share/R/library/jose/html/00Index.html
/usr/share/R/library/jose/html/R.css
/usr/share/R/library/jose/html/base64url_encode.html
/usr/share/R/library/jose/html/jwk.html
/usr/share/R/library/jose/html/jwt_claim.html
/usr/share/R/library/jose/html/jwt_encode.html

References

Summary

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