pyjwt 2.4.0-2 source package in Ubuntu

Changelog

pyjwt (2.4.0-2) unstable; urgency=medium

  [ Debian Janitor ]
  * Remove constraints unnecessary since buster

 -- Jelmer Vernooij <email address hidden>  Mon, 17 Oct 2022 02:46:25 +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

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
pyjwt_2.4.0-2.dsc 2.1 KiB 1e4ca7b644bc60814bd27428b92c4c7f48d27edc948734791715cddd6be79d15
pyjwt_2.4.0.orig.tar.gz 64.8 KiB d42908208c699b3b973cbeb01a969ba6a96c821eefb1c5bfe4c390c01d67abba
pyjwt_2.4.0-2.debian.tar.xz 4.3 KiB 0c0b5d2e2ddad6143f256aaaea24480948d91a0546ce79c7f4cef5dad1cb4f1b

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.