<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/pyjwt.git/jwt, branch add-python-35</title>
<subtitle>github.com: progrium/pyjwt.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyjwt.git/'/>
<entry>
<title>Reflect that --no-verify also ignores claims</title>
<updated>2015-11-30T23:33:56+00:00</updated>
<author>
<name>Gunnlaugur Thor Briem</name>
<email>gunnlaugur@gmail.com</email>
</author>
<published>2015-11-30T23:33:56+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyjwt.git/commit/?id=53d4cfcc53b2fa99c75a9aba829f7b0930353671'/>
<id>53d4cfcc53b2fa99c75a9aba829f7b0930353671</id>
<content type='text'>
The --no-verify option disables both signature verification and claims verification (e.g. expiry); reflect that in the command-line help.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The --no-verify option disables both signature verification and claims verification (e.g. expiry); reflect that in the command-line help.</pre>
</div>
</content>
</entry>
<entry>
<title>binary_type verification added to make the code more future-proof</title>
<updated>2015-10-23T15:35:23+00:00</updated>
<author>
<name>Mauricio Aizaga</name>
<email>mauricioaizaga@gmail.com</email>
</author>
<published>2015-10-23T15:35:23+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyjwt.git/commit/?id=3a50a425822fa3663643a98c6f6692f5acd8194a'/>
<id>3a50a425822fa3663643a98c6f6692f5acd8194a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed syntax for python 2.6</title>
<updated>2015-10-22T21:46:01+00:00</updated>
<author>
<name>Mauricio Aizaga</name>
<email>mauricioaizaga@gmail.com</email>
</author>
<published>2015-10-22T21:46:01+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyjwt.git/commit/?id=9f39f38a34569541691bf1b068fc8b3717f13d64'/>
<id>9f39f38a34569541691bf1b068fc8b3717f13d64</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed #183 AttributeError: 'NoneType' object has no attribute 'rsplit'</title>
<updated>2015-10-22T20:22:09+00:00</updated>
<author>
<name>Mauricio Aizaga</name>
<email>mauricioaizaga@gmail.com</email>
</author>
<published>2015-10-22T20:22:09+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyjwt.git/commit/?id=139dd05d1589ddcb4f8c9bd1b16b743ee4fcd2f6'/>
<id>139dd05d1589ddcb4f8c9bd1b16b743ee4fcd2f6</id>
<content type='text'>
The issue also occurs when payload is int raising:
    AttributeError: 'int' object has no attribute 'rsplit'
Test for None and int payload added
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The issue also occurs when payload is int raising:
    AttributeError: 'int' object has no attribute 'rsplit'
Test for None and int payload added
</pre>
</div>
</content>
</entry>
<entry>
<title>Change TypeError on bad `kid` to InvalidTokenError</title>
<updated>2015-07-23T12:50:49+00:00</updated>
<author>
<name>Gabriel Gironda</name>
<email>gabriel@thegroundwork.com</email>
</author>
<published>2015-07-23T12:50:49+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyjwt.git/commit/?id=2a93fc591805af3608de3330a3fd32bf5d4e9380'/>
<id>2a93fc591805af3608de3330a3fd32bf5d4e9380</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fail on encode and decode of bad JWS header values</title>
<updated>2015-07-21T21:19:49+00:00</updated>
<author>
<name>Gabriel Gironda</name>
<email>gabriel@thegroundwork.com</email>
</author>
<published>2015-07-21T21:19:49+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyjwt.git/commit/?id=91fe6cd68978620845e8c56f17348d0d8e042246'/>
<id>91fe6cd68978620845e8c56f17348d0d8e042246</id>
<content type='text'>
The JWS spec:

https://tools.ietf.org/html/draft-ietf-jose-json-web-signature-41#section-4.1.4

States that if `kid` is present then it **MUST** be a string.
Currently, the library allows silent creation of invalid JWS (and
thus, JWT), as it allows any type for `kid`. This commit adds checks
to help ensure output meets the spec.

* Add jwt.api_jws.PyJWS._validate_headers for validating JWS headers
  on encode and decode
* Add tests
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The JWS spec:

https://tools.ietf.org/html/draft-ietf-jose-json-web-signature-41#section-4.1.4

States that if `kid` is present then it **MUST** be a string.
Currently, the library allows silent creation of invalid JWS (and
thus, JWT), as it allows any type for `kid`. This commit adds checks
to help ensure output meets the spec.

* Add jwt.api_jws.PyJWS._validate_headers for validating JWS headers
  on encode and decode
* Add tests
</pre>
</div>
</content>
</entry>
<entry>
<title>Bump up version to v1.4.0</title>
<updated>2015-07-17T01:29:24+00:00</updated>
<author>
<name>José Padilla</name>
<email>jpadilla@webapplicate.com</email>
</author>
<published>2015-07-17T01:29:24+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyjwt.git/commit/?id=96c029a89f6311305ff93104db49c3c377072e1d'/>
<id>96c029a89f6311305ff93104db49c3c377072e1d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' of https://github.com/jpadilla/pyjwt</title>
<updated>2015-06-22T20:57:18+00:00</updated>
<author>
<name>Alexandru Mihai</name>
<email>92.alexandru.mihai@gmail.com</email>
</author>
<published>2015-06-22T20:57:18+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyjwt.git/commit/?id=7320fc429102fc7c67368343329fbd55047c2862'/>
<id>7320fc429102fc7c67368343329fbd55047c2862</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed #167 throw InvalidAlgorithmError if alg not in header</title>
<updated>2015-06-22T05:57:44+00:00</updated>
<author>
<name>Alexandru Mihai</name>
<email>92.alexandru.mihai@gmail.com</email>
</author>
<published>2015-06-22T05:57:44+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyjwt.git/commit/?id=3df27db421fbd8c54741a54772853378895b773d'/>
<id>3df27db421fbd8c54741a54772853378895b773d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added new options for requiring exp, iat, and nbf claims.</title>
<updated>2015-06-03T02:11:08+00:00</updated>
<author>
<name>Mark Adams</name>
<email>mark@markadams.me</email>
</author>
<published>2015-06-03T01:18:13+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/pyjwt.git/commit/?id=12791c7875dda323835b8e0b9c687d17ba0e641b'/>
<id>12791c7875dda323835b8e0b9c687d17ba0e641b</id>
<content type='text'>
Thanks to David Black &lt;dblack@atlassian.com&gt; for the suggestion.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Thanks to David Black &lt;dblack@atlassian.com&gt; for the suggestion.
</pre>
</div>
</content>
</entry>
</feed>
