From 9891eea5d5ae94750789d397c1a44fdd0fc3f589 Mon Sep 17 00:00:00 2001 From: caschick221 Date: Tue, 30 Apr 2024 15:41:35 -0400 Subject: [PATCH] idk --- .idea/CNSA-276-FP.iml | 2 +- .idea/misc.xml | 2 +- tet.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) 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)