From 65b08075ad2ba8b0dd0f48c89a36b546d2e07f69 Mon Sep 17 00:00:00 2001 From: Matthew Miller Date: Thu, 28 Mar 2024 11:57:05 -0700 Subject: [PATCH] Export new methods from helpers --- webauthn/helpers/__init__.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/webauthn/helpers/__init__.py b/webauthn/helpers/__init__.py index 751d5d5..443d1b0 100644 --- a/webauthn/helpers/__init__.py +++ b/webauthn/helpers/__init__.py @@ -11,11 +11,13 @@ from .options_to_json import options_to_json from .parse_attestation_object import parse_attestation_object from .parse_authentication_credential_json import parse_authentication_credential_json +from .parse_authentication_options_json import parse_authentication_options_json from .parse_authenticator_data import parse_authenticator_data from .parse_backup_flags import parse_backup_flags from .parse_cbor import parse_cbor from .parse_client_data_json import parse_client_data_json from .parse_registration_credential_json import parse_registration_credential_json +from .parse_registration_options_json import parse_registration_options_json from .validate_certificate_chain import validate_certificate_chain from .verify_safetynet_timestamp import verify_safetynet_timestamp from .verify_signature import verify_signature @@ -35,10 +37,12 @@ "parse_attestation_object", "parse_authenticator_data", "parse_authentication_credential_json", + "parse_authentication_options_json", "parse_backup_flags", "parse_cbor", "parse_client_data_json", "parse_registration_credential_json", + "parse_registration_options_json", "validate_certificate_chain", "verify_safetynet_timestamp", "verify_signature",