Skip to content

Commit

Permalink
urlchecker
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroen committed Oct 3, 2024
1 parent 0930c26 commit 594dea1
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion man/jwt_claim.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions man/jwt_encode.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# jose

[![Build Status](https://travis-ci.org/jeroen/jose.svg?branch=master)](https://travis-ci.org/jeroen/jose)
[![Build Status](https://app.travis-ci.com/jeroen/jose.svg?branch=master)](https://app.travis-ci.com/jeroen/jose)
[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/jeroen/jose?branch=master&svg=true)](https://ci.appveyor.com/project/jeroen/jose)
[![Coverage Status](https://codecov.io/github/jeroen/jose/coverage.svg?branch=master)](https://codecov.io/github/jeroen/jose?branch=master)
[![Coverage Status](https://codecov.io/github/jeroen/jose/coverage.svg?branch=master)](https://app.codecov.io/github/jeroen/jose?branch=master)
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/jose)](http://cran.r-project.org/package=jose)
[![CRAN RStudio mirror downloads](http://cranlogs.r-pkg.org/badges/jose)](http://cran.r-project.org/web/packages/jose/index.html)

Expand Down
2 changes: 1 addition & 1 deletion vignettes/jwk.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ knitr::opts_chunk$set(comment = "")

### RSA / ECDSA keys

JSON Web Keys (JWK) is a format specified in [RFC7517](https://tools.ietf.org/html/rfc7517) for storing RSA/EC/AES keys in a JSON based format. It can be used to import/export such keys in the browser using the new [W3C WebCryptoAPI](https://www.w3.org/TR/WebCryptoAPI/).
JSON Web Keys (JWK) is a format specified in [RFC7517](https://datatracker.ietf.org/doc/html/rfc7517) for storing RSA/EC/AES keys in a JSON based format. It can be used to import/export such keys in the browser using the new [W3C WebCryptoAPI](https://www.w3.org/TR/WebCryptoAPI/).

The `jose` package makes it easy to read/write such keys in R for use with JWT or any other functionality from the `openssl` package.

Expand Down
12 changes: 6 additions & 6 deletions vignettes/jwt.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ knitr::opts_chunk$set(echo = TRUE)
knitr::opts_chunk$set(comment = "")
```

JavaScript Object Signing and Encryption (JOSE) consists of a set of specifications for encryption and signatures based on the popular JSON format. This is work in progress, the IETF [jose workgroup](https://tools.ietf.org/wg/jose/) usually has the latest information.
JavaScript Object Signing and Encryption (JOSE) consists of a set of specifications for encryption and signatures based on the popular JSON format. This is work in progress, the IETF [jose workgroup](https://datatracker.ietf.org/wg/jose/) usually has the latest information.

- [RFC7515](https://tools.ietf.org/html/rfc7515): JSON Web Signature (JWS)
- [RFC7516](https://tools.ietf.org/html/rfc7516): JSON Web Encryption (JWE)
- [RFC7517](https://tools.ietf.org/html/rfc7517): JSON Web Key (JWK)
- [RFC7518](https://tools.ietf.org/html/rfc7518): JSON Web Algorithms (JWA)
- [RFC7519](https://tools.ietf.org/html/rfc7519): JSON Web Token (JWT)
- [RFC7515](https://datatracker.ietf.org/doc/html/rfc7515): JSON Web Signature (JWS)
- [RFC7516](https://datatracker.ietf.org/doc/html/rfc7516): JSON Web Encryption (JWE)
- [RFC7517](https://datatracker.ietf.org/doc/html/rfc7517): JSON Web Key (JWK)
- [RFC7518](https://datatracker.ietf.org/doc/html/rfc7518): JSON Web Algorithms (JWA)
- [RFC7519](https://datatracker.ietf.org/doc/html/rfc7519): JSON Web Token (JWT)

The `jose` package implements some of these specifications, in particular for working with JSON web tokens and keys.

Expand Down

0 comments on commit 594dea1

Please sign in to comment.