pyjwt 2.6.0-1 source package in Ubuntu

Changelog

pyjwt (2.6.0-1) unstable; urgency=medium

  * New upstream version 2.6.0
  * debian/control
    - Add python3-exceptiongroup and python3-tomli to Build-Depends.
  * debian/copyright
    - Update copyright years.
  * debian/tests/control
    - Add python3-exceptiongroup and python3-tomli to Depends.

 -- Daniele Tricoli <email address hidden>  Tue, 03 Jan 2023 03:04:35 +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
Lunar release main misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
pyjwt_2.6.0-1.dsc 2.2 KiB f4ea4d08d94cf8f45ddbe7af22820abea98858a084511c0cf8eac906d386b6ed
pyjwt_2.6.0.orig.tar.gz 71.3 KiB 69285c7e31fc44f68a1feb309e948e0df53259d579295e6cfe2b1792329f05fd
pyjwt_2.6.0-1.debian.tar.xz 4.4 KiB 81d5a012e1eeb0539753851c7991a82abb24924630e1205ac6928d1e03e7aff9

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.