Python library for the Verified Email Protocol
Project description
This is a python client library for the Verified Email Protocol, a.k.a Mozilla’s BrowserID project. See here for details:
And see here for how to integrate it into your website:
To just get something stable and working, it’s currently recommended that you use the browserid.org remote verifier service to check your assertions. Do so like this:
>>> verifier = vep.RemoteVerifier() >>> data = verifier.verify(BROWSERIDASSERTION, "http://mysite.com") >>> print data["email"] "test@example.com"
For improved performance, or if you just want to live on the bleeding edge, you can perform verification locally like so:
>>> verifier = vep.LocalVerifier() >>> data = verifier.verify(BROWSERIDASSERTION, "http://mysite.com") >>> print data["email"] "test@example.com"
As the Verified Email Protocol gets locked down more firmly, using the local verifier will become the preferred method of checking VEP identity assertions.
0.2.1 - 2011-12-16
Use M2Crypto for faster DSA operations.
DummyVerifier: fix hex formatting for compatability with jwcrypto.
DummyVerifier: don’t emit FutureWarning on initialisation.
0.2.0 - 2011-12-07
do more validation of the assertion before checking the certificates, to avoid expensive crypto ops for things we know to be invalid.
implement DummyVerifier class to aid in testing, both of this package and of packages that are using PyVEP.
add exception hierarchy in vep.errors, so that calling code can easily tell why verification failed.
0.1.1 - 2011-12-01
add “diresworb.org” to default list of trusted secondaries.
implement additional signature algorithms.
if “hostname/.well-known/host-meta” gives a 404, fall back to “hostname/pk” to find the public key.
0.1.0 - 2011-11-23
initial release.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file PyVEP-0.2.1.tar.gz
.
File metadata
- Download URL: PyVEP-0.2.1.tar.gz
- Upload date:
- Size: 22.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8fea10daeacdf1e442623e16f3d53ebf1a5015a0c7ef0daaa2cb7cab2bc799d9 |
|
MD5 | dff3eb6c796452b65765539dec5a1832 |
|
BLAKE2b-256 | c4cf43061919e801efef5574334282c422d1ca1522a7104ea4d47ef4540868d3 |