pyjwt 1.7.0-2 source package in Ubuntu

Changelog

pyjwt (1.7.0-2) unstable; urgency=medium

  * debian/tests/control
    - Wrap Depends.
    - Bump python{,3}-pytest version to >= 3.9.0.

 -- Daniele Tricoli <email address hidden>  Thu, 13 Dec 2018 02:09:40 +0100

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

Disco: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
pyjwt_1.7.0-2.dsc 2.4 KiB 49ce9ccd28e6444b7f16ce71e4181078d0f17744a48f2a1ddd6d0dfceceb72e6
pyjwt_1.7.0.orig.tar.gz 40.9 KiB ddec8409c57e9d371c6006e388f91daf3b0b43bdf9fcbf99451fb7cf5ce0a86d
pyjwt_1.7.0-2.debian.tar.xz 4.8 KiB 59cd5ff669ee774467c9b2b66ac1daea42b0ad32ab8eec0b6bdd4556016ca373

Available diffs

No changes file available.

Binary packages built by this source

python-jwt: No summary available for python-jwt in ubuntu focal.

No description available for python-jwt in ubuntu focal.

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.