pyjwt 1.7.1-2 source package in Ubuntu

Changelog

pyjwt (1.7.1-2) unstable; urgency=medium

  * Team upload.
  * Drop python2 support; Closes: #937463

 -- Sandro Tosi <email address hidden>  Sat, 26 Oct 2019 20:17:32 -0400

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
pyjwt_1.7.1-2.dsc 2.1 KiB ed10232645e74ebd36f8e2e590fd721efdef6385cc577638835ca99e618897b7
pyjwt_1.7.1.orig.tar.gz 41.0 KiB 8d59a976fb773f3e6a39c85636357c4f0e242707394cadadd9814f5cbaa20e96
pyjwt_1.7.1-2.debian.tar.xz 4.4 KiB d578a97022a876d33a6ac596cd888e822becfbab3218cc071d2c604a49a6ae34

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.