pyjwt 2.3.0-1 source package in Ubuntu

Changelog

pyjwt (2.3.0-1) unstable; urgency=medium

  * Team upload.
  * New upstream release.

 -- Thomas Goirand <email address hidden>  Wed, 16 Feb 2022 09:33:52 +0100

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Jammy release main misc

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
pyjwt_2.3.0-1.dsc 2.1 KiB d929b736e939fa38d37b6326f231d003017a1fc81c41e11989caaae24387917c
pyjwt_2.3.0.orig.tar.gz 60.8 KiB b888b4d56f06f6dcd777210c334e69c737be74755d3e5e9ee3fe67dc18a0ee41
pyjwt_2.3.0-1.debian.tar.xz 4.2 KiB af4919b41af730e3ec4445ec62f0957376bc733f726937d912d65f05d99a45ee

Available diffs

No changes file available.

Binary packages built by this source

python3-jwt: Python 3 implementation of JSON Web Token

 PyJWT implements the JSON Web Token draft 01, a way of representing
 signed content using JSON data structures.
 .
 Supported algorithms for cryptographic signing:
 .
   * HS256 - HMAC using SHA-256 hash algorithm (default)
   * HS384 - HMAC using SHA-384 hash algorithm
   * HS512 - HMAC using SHA-512 hash algorithm
   * RS256 - RSASSA-PKCS1-v1_5 signature algorithm using SHA-256 hash
     algorithm
   * RS384 - RSASSA-PKCS1-v1_5 signature algorithm using SHA-384 hash
     algorithm
   * RS512 - RSASSA-PKCS1-v1_5 signature algorithm using SHA-512 hash
     algorithm
 .
 Supported reserved claim names:
   - "exp" (Expiration Time) Claim
 .
 This package contains the Python 3 version of the library.