pyjwt 1.7.1-2ubuntu2 source package in Ubuntu

Changelog

pyjwt (1.7.1-2ubuntu2) focal; urgency=medium

  * Drop Python 2 package.
    - There is no remaining changes compared to the Debian packaging.

 -- Jeremy Bicha <email address hidden>  Sun, 05 Apr 2020 19:07:35 -0400

Upload details

Uploaded by:
Jeremy BĂ­cha
Uploaded to:
Focal
Original maintainer:
Debian Python Modules Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Focal release main misc

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
pyjwt_1.7.1.orig.tar.gz 41.0 KiB 8d59a976fb773f3e6a39c85636357c4f0e242707394cadadd9814f5cbaa20e96
pyjwt_1.7.1-2ubuntu2.debian.tar.xz 4.6 KiB c528d95ea6039eefcd8aec77f6740faadffed9fc5e48c7dd7dc80e06ff2b37ae
pyjwt_1.7.1-2ubuntu2.dsc 2.2 KiB 31c7827223e0a915e041bdf8405ef9d5d369c21cc25cffe3b2807d636871961c

Available diffs

View changes file

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.