diff --git a/.idea/CNSA-276-FP.iml b/.idea/CNSA-276-FP.iml index 3c6ad93..673a12b 100644 --- a/.idea/CNSA-276-FP.iml +++ b/.idea/CNSA-276-FP.iml @@ -5,7 +5,7 @@ - + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml index c76ee5f..92298c3 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -3,5 +3,5 @@ - + \ No newline at end of file diff --git a/tet.py b/tet.py index cbb7e17..0dd95eb 100644 --- a/tet.py +++ b/tet.py @@ -6,7 +6,7 @@ from fido2.hid import CtapHidDevice import os # Setup the relying party (RP) entity -rp = PublicKeyCredentialRpEntity("10.1.1.245", "Example RP") +rp = PublicKeyCredentialRpEntity("auth.eggtech.net", "Example RP") # Setup the user entity user = PublicKeyCredentialUserEntity( @@ -47,7 +47,7 @@ if device is None: raise ValueError("No FIDO device found") # Client instance for the device -client = Fido2Client(device, "10.1.1.245") +client = Fido2Client(device, "auth.eggtech.net") # Use the manual options we created for make_credential attestation_object, client_data = client.make_credential(options)