Skip to content

Commit 4ed153c

Browse files
author
Roland Hedberg
committed
Added labels to README
1 parent ce104c0 commit 4ed153c

3 files changed

Lines changed: 23 additions & 3 deletions

File tree

README.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,21 @@ Implementation of JWT, JWS, JWE and JWK as defined in:
77
- https://tools.ietf.org/html/draft-ietf-jose-json-web-encryption
88
- https://tools.ietf.org/html/draft-ietf-jose-json-web-key-36
99

10+
.. image:: https://api.travis-ci.org/rohe/pyjwkest.png?branch=master
11+
:target: https://travis-ci.org/rohe/pyjwkest
12+
13+
.. image:: https://img.shields.io/pypi/pyversions/pyjwkest.svg
14+
:target: https://pypi.python.org/pypi/pyjwkest
15+
16+
.. image:: https://img.shields.io/pypi/v/pyjwkest.svg
17+
:target: https://pypi.python.org/pypi/pyjwkest
18+
19+
.. image:: https://img.shields.io/pypi/dm/pyjwkest.svg
20+
:target: https://pypi.python.org/pypi/pyjwkest
21+
22+
.. image:: https://landscape.io/github/rohe/pyjwkest/master/landscape.svg?style=flat
23+
:target: https://landscape.io/github/rohe/pyjwkest/master
24+
1025
Installation
1126
============
1227

src/jwkest/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
from binascii import unhexlify
1616

17-
__version__ = "1.1.6"
17+
__version__ = "1.1.8.1"
1818

1919
logger = logging.getLogger(__name__)
2020

src/jwkest/jws.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,11 @@
2323
from Crypto.Util.number import bytes_to_long
2424
import sys
2525

26-
from jwkest import b64d, as_unicode, WrongNumberOfParts, b64d_enc_dec, b64e_enc_dec
26+
from jwkest import b64d
27+
from jwkest import as_unicode
28+
from jwkest import WrongNumberOfParts
29+
from jwkest import b64d_enc_dec
30+
from jwkest import b64e_enc_dec
2731
from jwkest import b64e
2832
from jwkest import constant_time_compare
2933
from jwkest import safe_str_cmp
@@ -34,7 +38,8 @@
3438
from jwkest.ecc import P384
3539
from jwkest.ecc import P521
3640

37-
from jwkest.jwk import load_x509_cert, KEYS
41+
from jwkest.jwk import load_x509_cert
42+
from jwkest.jwk import KEYS
3843
from jwkest.jwk import HeaderError
3944
from jwkest.jwk import sha256_digest
4045
from jwkest.jwk import sha384_digest

0 commit comments

Comments
 (0)