python-u2flib-server icon indicating copy to clipboard operation
python-u2flib-server copied to clipboard

Python based U2F server library

Results 9 python-u2flib-server issues
Sort by recently updated
recently updated
newest added

Calling `verify_authenticate` / `complete_register` can raise a bunch of different exceptions. Here are some examples: ``` >>> from u2flib_server.u2f_v2 import start_authenticate, complete_register >>> start_authenticate({}) Traceback (most recent call last): File...

Fix for #46. Didn't check the rest of the code for other usage but it will squelch the two lines in that issue.

I am running through implementing a u2f server in elixir and have been using this library as a guide. I have a question about the following line of code: [_parse_tlv_size](https://github.com/Yubico/python-u2flib-server/blob/4b9d353a3ba82be40c6cf9bab39d34ea7e07cb5a/u2flib_server/model.py#L76)...

Using this (in a 3rd party lib) I get two DeprecationWarning messages: ``` /home/user/django-u2f/venv/lib/python3.5/site-packages/u2flib_server/model.py:178: CryptographyDeprecationWarning: signer and verifier have been deprecated. Please use sign and verify instead. verifier = pubkey.verifier(self.signature,...

bug

In version 5.0, when performing `complete_authentication`, the `publicKey` is extracted only from request, which makes usage difficult. The request is send to the client (browser), but it doesn't need the...

I would like to implement this package in a Django package. Therefore I would like to know the workings of the package but there is ~not much~ no documentation in...

Newer setuptools that builds wheels may produce universal Python 2 and Python 3 wheels which then always gets enum34 installed, which breaks installs.

Url: http://demo.yubico.com/u2f?tab=register ``` Traceback (most recent call last): File "/root/python-u2flib-server-demo/examples/yubiauth_server.py", line 118, in __call__ password = request.params['password'] File "/usr/lib/python2.7/dist-packages/webob/multidict.py", line 312, in __getitem__ return self._decode_value(self.multi.__getitem__(self._encode_key(key))) File "/usr/lib/python2.7/dist-packages/webob/multidict.py", line 301, in...

Using recent versions of setuptools, wheels will automatically be built locally and cached to improve installation speed. However, if the wheel happens to be built with Python 2.7, it will...