mirror of
https://github.com/polhenarejos/pico-fido.git
synced 2025-12-19 19:27:41 +08:00
Fix ssh-keygen creation.
Fixes #59 Signed-off-by: Pol Henarejos <pol.henarejos@cttc.es>
This commit is contained in:
@@ -120,8 +120,13 @@ void cbor_thread(void) {
|
|||||||
DEBUG_DATA(res_APDU + 1, res_APDU_size);
|
DEBUG_DATA(res_APDU + 1, res_APDU_size);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
res_APDU[0] = apdu.sw;
|
if (apdu.sw >= CTAP1_ERR_INVALID_CHANNEL) {
|
||||||
//apdu.sw = 0;
|
res_APDU[-1] = apdu.sw;
|
||||||
|
apdu.sw = 0;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
res_APDU[0] = apdu.sw;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
finished_data_size = res_APDU_size + 1;
|
finished_data_size = res_APDU_size + 1;
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ int cbor_make_credential(const uint8_t *data, size_t len) {
|
|||||||
CredExtensions extensions = { 0 };
|
CredExtensions extensions = { 0 };
|
||||||
//options.present = true;
|
//options.present = true;
|
||||||
//options.up = ptrue;
|
//options.up = ptrue;
|
||||||
//options.uv = pfalse;
|
options.uv = pfalse;
|
||||||
//options.rk = pfalse;
|
//options.rk = pfalse;
|
||||||
|
|
||||||
CBOR_CHECK(cbor_parser_init(data, len, 0, &parser, &map));
|
CBOR_CHECK(cbor_parser_init(data, len, 0, &parser, &map));
|
||||||
@@ -246,7 +246,7 @@ int cbor_make_credential(const uint8_t *data, size_t len) {
|
|||||||
//else if (options.up == NULL) //5.7
|
//else if (options.up == NULL) //5.7
|
||||||
//rup = ptrue;
|
//rup = ptrue;
|
||||||
}
|
}
|
||||||
if (pinUvAuthParam.present == false && options.uv != ptrue && file_has_data(ef_pin)) { //8.1
|
if (pinUvAuthParam.present == false && options.uv == pfalse && file_has_data(ef_pin)) { //8.1
|
||||||
CBOR_ERROR(CTAP2_ERR_PUAT_REQUIRED);
|
CBOR_ERROR(CTAP2_ERR_PUAT_REQUIRED);
|
||||||
}
|
}
|
||||||
if (enterpriseAttestation > 0) {
|
if (enterpriseAttestation > 0) {
|
||||||
|
|||||||
Reference in New Issue
Block a user