diff options
| author | José Padilla <jpadilla@webapplicate.com> | 2015-03-18 10:37:59 -0400 |
|---|---|---|
| committer | José Padilla <jpadilla@webapplicate.com> | 2015-03-18 10:37:59 -0400 |
| commit | a507b5c9a0598e39bcba6229d3cda1db8718eccf (patch) | |
| tree | cd75d47da8fefbce1aaf4c0de46d810ff42fcf92 | |
| parent | cffa221cafbd1b9204beb59358d9e42bcf1bb572 (diff) | |
| download | pyjwt-a507b5c9a0598e39bcba6229d3cda1db8718eccf.tar.gz | |
Add note about PyCrypto and ecdsa
| -rw-r--r-- | README.md | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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 |
