summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosé Padilla <jpadilla@webapplicate.com>2015-03-18 10:37:59 -0400
committerJosé Padilla <jpadilla@webapplicate.com>2015-03-18 10:37:59 -0400
commita507b5c9a0598e39bcba6229d3cda1db8718eccf (patch)
treecd75d47da8fefbce1aaf4c0de46d810ff42fcf92
parentcffa221cafbd1b9204beb59358d9e42bcf1bb572 (diff)
downloadpyjwt-a507b5c9a0598e39bcba6229d3cda1db8718eccf.tar.gz
Add note about PyCrypto and ecdsa
-rw-r--r--README.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/README.md b/README.md
index e76872d..383ad71 100644
--- a/README.md
+++ b/README.md
@@ -15,13 +15,15 @@ $ pip install PyJWT
**A Note on Dependencies**:
-RSA and ECDSA signatures depend on the cryptography package. If you plan on
+RSA and ECDSA signatures depend on the recommended `cryptography` package. If you plan on
using any of those algorithms, you'll need to install it as well.
```
$ pip install cryptography
```
+If you're system doesn't allow installing `cryptography` like on Google App Engine, you can install `PyCrypto` for RSA signatures and `ecdsa` for ECDSA signatures.
+
## Usage
```python