yami36

Results 5 comments of yami36

I tried to iterate (with uv=FIDO_OPT_FALSE and no pin) but with some authenticator other than YubiKeys (HyperFido, eWMB GoldenGate) user presence is always required. I added cbor_add_bool(item, "up", false) to...

No. I am using the following pattern: fido_cred_t* cred = fido_cred_new(); fido_cred_set_type(cred, alg) fido_cred_set_clientdata_hash(cred, dummy) fido_cred_set_rp(cred, dummy) fido_cred_set_user(cred, dummy) fido_cred_set_extensions(cred, 0); fido_cred_set_uv(cred, FIDO_OPT_FALSE) fido_dev_make_cred(dev, cred, nullptr); It works great with...

First detection en print info, then algorithm detection. (start after line with eWBM eWBM Security Key(Goldengate G310)). It takes a few seconds instead of instantaneous is_fido: unsupported report len is_fido:...

The detection iterates through { COSE_ES256, COSE_EDDSA, COSE_RS256, COSE_ECDH_ES256 }

You're right, it's fast if I add cbor_add_bool(item, "up", FIDO_OPT_FALSE) to cbor_encode_options because it returns FIDO_ERR_INVALID_OPTION version strings: U2F_V2, FIDO_2_0, FIDO_2_1_PRE extension strings: credProtect, hmac-secret aaguid: 95442b2ef15e4defb270efb106facb4e options: rk(yes), up(yes),...