Compare commits
7 Commits
sanitize
...
fido2-conf
Author | SHA1 | Date | |
---|---|---|---|
14f91a6e15 | |||
cd29a0e0fe | |||
46b7f9a778 | |||
31328fe7e7 | |||
035b1a8632 | |||
b1563dbe94 | |||
2a9e3ac576 |
@ -1 +1 @@
|
|||||||
2.2.2
|
2.3.0
|
||||||
|
BIN
docs/solo/images/conforms.PNG
Normal file
BIN
docs/solo/images/conforms.PNG
Normal file
Binary file not shown.
After Width: | Height: | Size: 134 KiB |
BIN
docs/solo/images/solo_conforms.PNG
Normal file
BIN
docs/solo/images/solo_conforms.PNG
Normal file
Binary file not shown.
After Width: | Height: | Size: 129 KiB |
@ -929,7 +929,15 @@ uint8_t parse_credential_descriptor(CborValue * arr, CTAP_credentialDescriptor *
|
|||||||
|
|
||||||
buflen = sizeof(type);
|
buflen = sizeof(type);
|
||||||
ret = cbor_value_copy_text_string(&val, type, &buflen, NULL);
|
ret = cbor_value_copy_text_string(&val, type, &buflen, NULL);
|
||||||
|
if (ret == CborErrorOutOfMemory)
|
||||||
|
{
|
||||||
|
cred->type = PUB_KEY_CRED_UNKNOWN;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
check_ret(ret);
|
check_ret(ret);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
if (strncmp(type, "public-key",11) == 0)
|
if (strncmp(type, "public-key",11) == 0)
|
||||||
{
|
{
|
||||||
|
@ -20,6 +20,9 @@
|
|||||||
],
|
],
|
||||||
"userVerificationDetails": [
|
"userVerificationDetails": [
|
||||||
[
|
[
|
||||||
|
{
|
||||||
|
"userVerification": 1
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"userVerification": 4
|
"userVerification": 4
|
||||||
}
|
}
|
||||||
|
@ -621,6 +621,20 @@ class FIDO2Tests(Tester):
|
|||||||
other={"exclude_list": [{"id": b"1234", "type": "rot13"}]},
|
other={"exclude_list": [{"id": b"1234", "type": "rot13"}]},
|
||||||
)
|
)
|
||||||
|
|
||||||
|
self.testMC(
|
||||||
|
"Send MC request with excludeList item with bogus type, expect SUCCESS",
|
||||||
|
cdh,
|
||||||
|
rp,
|
||||||
|
user,
|
||||||
|
key_params,
|
||||||
|
expectedError=CtapError.ERR.SUCCESS,
|
||||||
|
other={
|
||||||
|
"exclude_list": [
|
||||||
|
{"id": b"1234", "type": "mangoPapayaCoconutNotAPublicKey"}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
self.testMC(
|
self.testMC(
|
||||||
"Send MC request with excludeList with bad item, expect error",
|
"Send MC request with excludeList with bad item, expect error",
|
||||||
cdh,
|
cdh,
|
||||||
|
Reference in New Issue
Block a user