44 lines
1.6 KiB
Python
44 lines
1.6 KiB
Python
"""
|
|
/*
|
|
* This file is part of the Pico Fido distribution (https://github.com/polhenarejos/pico-fido).
|
|
* Copyright (c) 2022 Pol Henarejos.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, version 3.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
"""
|
|
|
|
|
|
# Test U2F register works with FIDO2 auth
|
|
def test_ctap1_register(RegRes):
|
|
pass
|
|
|
|
def test_ctap1_authenticate(RegRes, AuthRes):
|
|
pass
|
|
|
|
def test_authenticate_ctap1_through_ctap2(device, RegRes):
|
|
res = device.doGA(ctap1=False, allow_list=[
|
|
{"id": RegRes['res'].attestation_object.auth_data.credential_data.credential_id, "type": "public-key"}
|
|
])
|
|
assert res['res'].get_response(0).credential_id == RegRes['res'].attestation_object.auth_data.credential_data.credential_id
|
|
|
|
|
|
# Test FIDO2 register works with U2F auth
|
|
def test_ctap1_authenticate_attestation(MCRes, device):
|
|
key_handle = MCRes['res'].attestation_object.auth_data.credential_data.credential_id
|
|
if len(key_handle) <= 255:
|
|
res = device.doGA(ctap1=True, allow_list=[
|
|
{"id": key_handle, "type": "public-key"}
|
|
])
|
|
else:
|
|
print("ctap2 credId is longer than 255 bytes, cannot use with U2F.")
|