We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using solo 0.1.1 from pip, with fido2 pinned to 0.9.1 so that basic things work, we still find solo key probe doesn't work:
fido2
0.9.1
solo key probe
$ solo key probe SHA256 ./example.file [...] return __callback(*args, **kwargs) File "~/lib/python/site-packages/solo/cli/key.py", line 237, in probe serialized_command = fido2.cbor.dumps({"subcommand": hash_type, "data": data}) AttributeError: module 'fido2.cbor' has no attribute 'dumps'
Sure enough this hasn't existed since 2019 - dumps has been replaced by encode.
dumps
encode
That's just the start of the problems with probe but it's a clear change that must be made to fix the error and keep up with the library.
probe
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using solo 0.1.1 from pip, with
fido2
pinned to0.9.1
so that basic things work, we still findsolo key probe
doesn't work:Sure enough this hasn't existed since 2019 -
dumps
has been replaced byencode
.That's just the start of the problems with
probe
but it's a clear change that must be made to fix the error and keep up with the library.The text was updated successfully, but these errors were encountered: