Skip to content

Commit 1fb9c07

Browse files
committed
WIP: 'solo key probe' still broken (no new breakage though)
1 parent 95d4e34 commit 1fb9c07

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

solo/cli/key.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -234,10 +234,10 @@ def probe(serial, udp, hash_type, filename):
234234
p = solo.client.find(serial, udp=udp)
235235
import fido2
236236

237-
serialized_command = fido2.cbor.dumps({"subcommand": hash_type, "data": data})
237+
serialized_command = fido2.cbor.encode({"subcommand": hash_type, "data": data})
238238
from solo.commands import SoloBootloader
239239

240-
result = p.send_data_hid(SoloBootloader.HIDCommandProbe, serialized_command)
240+
result = p.send_data_hid(SoloBootloader.CommandProbe, serialized_command)
241241
result_hex = result.hex()
242242
print(result_hex)
243243
if hash_type == "Ed25519":

0 commit comments

Comments
 (0)