summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorjturmel <jturmel@gmail.com>2014-03-17 15:53:27 -0500
committerjturmel <jturmel@gmail.com>2014-03-17 22:10:15 -0500
commite41bee876c32d11070cb6f4686e41fd78b2c5168 (patch)
tree4a54faea9011a539d41546b8408a6fbdb27967aa /.travis.yml
parenta66fe9800c7c7732491a213e1cacf7b82f2b1282 (diff)
downloadoauthlib-e41bee876c32d11070cb6f4686e41fd78b2c5168.tar.gz
Add crypto token capability
* Add a method to generate crypto tokens for use as Bearer tokens * Add a method to verify an incoming crypto token and unpack the header and claims * Uses the PyJWT library This is not JWT token support, merely a way to generate Bearer tokens that won't have to be stored in a database but can self-validate and store additional information that you see fit.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index dd781a5..5504479 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -8,7 +8,7 @@ python:
install:
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install --use-mirrors unittest2; fi
- - pip install nose pycrypto mock
+ - pip install nose pycrypto mock pyjwt
script:
- nosetests -w tests