├── .editorconfig ├── .github ├── README.md └── workflows │ ├── autobuild.yml │ └── release.yml ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── tasks.json ├── Documentation ├── API │ ├── DSInternals.Win32.WebAuthn.Adapter.ApiMapper.md │ ├── DSInternals.Win32.WebAuthn.Adapter.WebAuthnApiAdapter.md │ ├── DSInternals.Win32.WebAuthn.Adapter.md │ ├── DSInternals.Win32.WebAuthn.ApiVersion.md │ ├── DSInternals.Win32.WebAuthn.AttestationConveyancePreference.md │ ├── DSInternals.Win32.WebAuthn.AuthenticationExtensionsClientInputs.md │ ├── DSInternals.Win32.WebAuthn.AuthenticationExtensionsClientOutputs.md │ ├── DSInternals.Win32.WebAuthn.AuthenticatorAssertionResponse.md │ ├── DSInternals.Win32.WebAuthn.AuthenticatorAttachment.md │ ├── DSInternals.Win32.WebAuthn.AuthenticatorAttestationResponse.md │ ├── DSInternals.Win32.WebAuthn.AuthenticatorFlags.md │ ├── DSInternals.Win32.WebAuthn.AuthenticatorResponse.md │ ├── DSInternals.Win32.WebAuthn.AuthenticatorSelection.md │ ├── DSInternals.Win32.WebAuthn.AuthenticatorTransport.md │ ├── DSInternals.Win32.WebAuthn.Base64UrlConverter.md │ ├── DSInternals.Win32.WebAuthn.COSE.Algorithm.md │ ├── DSInternals.Win32.WebAuthn.COSE.EllipticCurve.md │ ├── DSInternals.Win32.WebAuthn.COSE.KeyCommonParameter.md │ ├── DSInternals.Win32.WebAuthn.COSE.KeyType.md │ ├── DSInternals.Win32.WebAuthn.COSE.KeyTypeParameter.md │ ├── DSInternals.Win32.WebAuthn.COSE.md │ ├── DSInternals.Win32.WebAuthn.CredentialDetails.md │ ├── DSInternals.Win32.WebAuthn.CredentialLargeBlobOperation.md │ ├── DSInternals.Win32.WebAuthn.EnterpriseAttestationType.md │ ├── DSInternals.Win32.WebAuthn.FIDO.AttestedCredentialData.md │ ├── DSInternals.Win32.WebAuthn.FIDO.AuthenticatorData.md │ ├── DSInternals.Win32.WebAuthn.FIDO.CollectedClientData.md │ ├── DSInternals.Win32.WebAuthn.FIDO.CredentialPublicKey.md │ ├── DSInternals.Win32.WebAuthn.FIDO.md │ ├── DSInternals.Win32.WebAuthn.HMACGetSecretInput.md │ ├── DSInternals.Win32.WebAuthn.HMACGetSecretOutput.md │ ├── DSInternals.Win32.WebAuthn.HexConverter.md │ ├── DSInternals.Win32.WebAuthn.Interop.ApiConstants.md │ ├── DSInternals.Win32.WebAuthn.Interop.HybridStorageLinkedData.md │ ├── DSInternals.Win32.WebAuthn.Interop.md │ ├── DSInternals.Win32.WebAuthn.JsonCustomEnumConverter-1.md │ ├── DSInternals.Win32.WebAuthn.LargeBlobSupport.md │ ├── DSInternals.Win32.WebAuthn.MicrosoftGraphWebauthnAttestationResponse.md │ ├── DSInternals.Win32.WebAuthn.MicrosoftGraphWebauthnCredentialCreationOptions.md │ ├── DSInternals.Win32.WebAuthn.PublicKeyCredential.md │ ├── DSInternals.Win32.WebAuthn.PublicKeyCredentialCreationOptions.md │ ├── DSInternals.Win32.WebAuthn.PublicKeyCredentialDescriptor.md │ ├── DSInternals.Win32.WebAuthn.PublicKeyCredentialParameter.md │ ├── DSInternals.Win32.WebAuthn.RelyingPartyInformation.md │ ├── DSInternals.Win32.WebAuthn.UserInformation.md │ ├── DSInternals.Win32.WebAuthn.UserVerification.md │ ├── DSInternals.Win32.WebAuthn.UserVerificationRequirement.md │ ├── DSInternals.Win32.WebAuthn.WebAuthnApi.md │ ├── DSInternals.Win32.WebAuthn.WindowHandle.md │ ├── DSInternals.Win32.WebAuthn.md │ └── toc.yml ├── CHANGELOG.md ├── PowerShell │ ├── Connect-Okta.md │ ├── Disconnect-Okta.md │ ├── Get-PasskeyRegistrationOptions.md │ ├── New-Passkey.md │ ├── README.md │ └── Register-Passkey.md ├── Rohitab │ ├── README.md │ └── WebAuthn.xml └── Screenshots │ ├── api_monitor.png │ ├── api_monitor_options.png │ ├── fido2_ui.png │ ├── powershell.png │ └── webauthn_event_viewer.png ├── Keys ├── DSInternals.Public.snk └── README.md ├── LICENSE ├── Scripts ├── Build-PowerShellModule.ps1 └── Update-PowerShellDocumentation.ps1 ├── Src ├── DSInternals.Passkeys │ ├── DSInternals.Passkeys.Tests.ps1 │ ├── DSInternals.Passkeys.psd1 │ ├── DSInternals.Passkeys.psm1 │ └── en-US │ │ ├── DSInternals.Passkeys-help.xml │ │ └── about_DSInternals.Passkeys.help.txt ├── DSInternals.Win32.WebAuthn.Adapter.Tests │ ├── ApiMapperTester.cs │ ├── DSInternals.Win32.WebAuthn.Adaper.Tests.csproj │ ├── WebAuthnApiAdapterTester.cs │ └── packages.lock.json ├── DSInternals.Win32.WebAuthn.Adapter │ ├── ApiMapper.cs │ ├── DSInternals.Win32.WebAuthn.Adapter.csproj │ ├── WebAuthnApiAdapter.cs │ └── packages.lock.json ├── DSInternals.Win32.WebAuthn.Tests │ ├── DSInternals.Win32.WebAuthn.Tests.csproj │ ├── FIDO │ │ ├── Base64UrlConverterTester.cs │ │ └── CollectedClientDataTester.cs │ ├── Interop │ │ ├── ApiHelperTester.cs │ │ ├── AuthenticationExtensionsTester.cs │ │ ├── NativeMethodsTester.cs │ │ ├── WebAuthnApiTester.cs │ │ └── WindowHandleTester.cs │ ├── MicrosoftGraphWebauthnCredentialCreationOptionsTester.cs │ ├── PublicKeyCredentialCreationOptionsTester.cs │ └── packages.lock.json ├── DSInternals.Win32.WebAuthn │ ├── AuthenticationExtensionsClientInputs.cs │ ├── AuthenticationExtensionsClientOutputs.cs │ ├── AuthenticatorAssertionResponse.cs │ ├── AuthenticatorAttestationResponse.cs │ ├── AuthenticatorResponse.cs │ ├── AuthenticatorSelection.cs │ ├── COSE │ │ ├── Algorithm.cs │ │ ├── EllipticCurve.cs │ │ ├── KeyCommonparameter.cs │ │ ├── KeyType.cs │ │ └── KeyTypeParameter.cs │ ├── CredentialDetails.cs │ ├── DSInternals.Win32.WebAuthn.csproj │ ├── EntraID │ │ ├── MicrosoftGraphWebauthnAttestationResponse.cs │ │ └── MicrosoftGraphWebauthnCredentialCreationOptions.cs │ ├── Enums │ │ ├── ApiVersion.cs │ │ ├── AttestationConveyancePreference .cs │ │ ├── AuthenticatorAttachment.cs │ │ ├── AuthenticatorFlags.cs │ │ ├── AuthenticatorTransport.cs │ │ ├── CredentialLargeBlobOperation.cs │ │ ├── CredentialLargeBlobStatus.cs │ │ ├── EnterpriseAttestationType.cs │ │ ├── LargeBlobSupport.cs │ │ ├── UserVerification.cs │ │ └── UserVerificationRequirement.cs │ ├── Extensions │ │ └── HexConverter.cs │ ├── FIDO │ │ ├── AttestedCredentialData.cs │ │ ├── AuthenticatorData.cs │ │ ├── CollectedClientData.cs │ │ └── CredentialPublicKey.cs │ ├── HMACGetSecretInput.cs │ ├── HMACGetSecretOutput.cs │ ├── Interop │ │ ├── ApiConstants.cs │ │ ├── ApiHelper.cs │ │ ├── EndianBitConverter.cs │ │ ├── Enums │ │ │ ├── AssertionOptionsFlags.cs │ │ │ ├── AttestationDecode.cs │ │ │ └── HResult.cs │ │ ├── Marshalers │ │ │ ├── AssertionSafeHandle.cs │ │ │ ├── ByteArray.cs │ │ │ ├── CredentialAttestationSafeHandle.cs │ │ │ ├── DisposableList.cs │ │ │ ├── PlatformCredentialListSafeHandle.cs │ │ │ ├── PtrToConstStringMarshaler.cs │ │ │ ├── SafeStructArray.cs │ │ │ └── VersionedStructMarshaler.cs │ │ ├── NativeMethods.cs │ │ ├── StructVersions │ │ │ ├── AssertionVersion.cs │ │ │ ├── AuthenticatorGetAssertionOptionsVersion.cs │ │ │ ├── AuthenticatorMakeCredentialOptionsVersion.cs │ │ │ ├── ClientDataVersion.cs │ │ │ ├── CommonAttestationVersion.cs │ │ │ ├── CoseCredentialParameterVersion.cs │ │ │ ├── CredentialAttestationVersion.cs │ │ │ ├── CredentialDetailsVersion.cs │ │ │ ├── CredentialExVersion.cs │ │ │ ├── CredentialVersion.cs │ │ │ ├── GetCredentialOptionsVersion.cs │ │ │ ├── HybridStorageLinkedDataVersion.cs │ │ │ ├── RelyingPartyInformationVersion.cs │ │ │ └── UserInformationVersion.cs │ │ └── Structs │ │ │ ├── ClientData.cs │ │ │ ├── Credential.cs │ │ │ ├── CredentialEx.cs │ │ │ ├── CredentialExList.cs │ │ │ ├── CredentialWithHmacSecretSalt.cs │ │ │ ├── Credentials.cs │ │ │ ├── Extension.cs │ │ │ ├── Extensions.cs │ │ │ ├── GetAssertion │ │ │ ├── Assertion.cs │ │ │ └── AuthenticatorGetAssertionOptions.cs │ │ │ ├── GetCredentialList │ │ │ ├── CredentialDetailsList.cs │ │ │ ├── CredentialDetailsOut.cs │ │ │ ├── GetCredentialsOptions.cs │ │ │ └── UserInformationOut.cs │ │ │ ├── HmacSecretSalt.cs │ │ │ ├── HmacSecretSaltValues.cs │ │ │ ├── HybridStorageLinkedData.cs │ │ │ ├── MakeCredential │ │ │ ├── AuthenticatorMakeCredentialOptions.cs │ │ │ ├── Certificate.cs │ │ │ ├── CommonAttestation.cs │ │ │ ├── CoseCredentialParameter.cs │ │ │ ├── CredentialAttestation.cs │ │ │ └── UserInformationIn.cs │ │ │ └── PreviousVersions │ │ │ ├── AssertionV1.cs │ │ │ ├── AssertionV2.cs │ │ │ ├── AssertionV3.cs │ │ │ ├── AssertionV4.cs │ │ │ ├── CredentialAttestationV1.cs │ │ │ ├── CredentialAttestationV2.cs │ │ │ ├── CredentialAttestationV3.cs │ │ │ ├── CredentialAttestationV4.cs │ │ │ ├── CredentialAttestationV5.cs │ │ │ └── CredentialDetailsV1.cs │ ├── NativeMethods.json │ ├── NativeMethods.txt │ ├── Okta │ │ ├── OktaFido2AuthenticationMethod.cs │ │ ├── OktaWebauthnAttestationResponse.cs │ │ └── OktaWebauthnCredentialCreationOptions.cs │ ├── PublicKeyCredential.cs │ ├── PublicKeyCredentialCreationOptions.cs │ ├── PublicKeyCredentialDescriptor.cs │ ├── PublicKeyCredentialParameter.cs │ ├── RelyingPartyInformation.cs │ ├── Serialization │ │ ├── Base64UrlConverter.cs │ │ └── JsonCustomEnumConverter.cs │ ├── UserInformation.cs │ ├── WebAuthnApi.Async.cs │ ├── WebAuthnApi.cs │ ├── WebauthnAttestationResponse.cs │ ├── WebauthnCredentialCreationOptions.cs │ ├── WindowHandle.cs │ └── packages.lock.json ├── Directory.Build.props ├── Fido2UI │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── Controls │ │ ├── TimeoutEditor.xaml │ │ └── TimeoutEditor.xaml.cs │ ├── DesignTimeResources.xaml │ ├── Fido2UI.csproj │ ├── Helpers │ │ └── EnumAdapter.cs │ ├── Views │ │ ├── AlgorithmSelector │ │ │ ├── AlgorithmSelectorView.xaml │ │ │ ├── AlgorithmSelectorView.xaml.cs │ │ │ ├── AlgorithmSelectorViewModel.cs │ │ │ └── IAlgorithmSelectorViewModel.cs │ │ ├── ApiInformation │ │ │ ├── ApiInformationView.xaml │ │ │ ├── ApiInformationView.xaml.cs │ │ │ └── ApiInformationViewModel.cs │ │ ├── AssertionOptions │ │ │ ├── AssertionOptionsView.xaml │ │ │ ├── AssertionOptionsView.xaml.cs │ │ │ ├── AssertionOptionsViewModel.cs │ │ │ └── IAssertionOptionsViewModel.cs │ │ ├── AttestationOptions │ │ │ ├── AttestationOptionsView.xaml │ │ │ ├── AttestationOptionsView.xaml.cs │ │ │ ├── AttestationOptionsViewModel.cs │ │ │ └── IAttestationOptionsViewModel.cs │ │ ├── CredentialManagement │ │ │ ├── CredentialManagementView.xaml │ │ │ ├── CredentialManagementView.xaml.cs │ │ │ ├── CredentialManagementViewModel.cs │ │ │ └── ICredentialManagementViewModel.cs │ │ ├── MainWindow │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ └── MainWindowViewModel.cs │ │ └── NotificationDialog │ │ │ ├── NotificationDialog.xaml │ │ │ ├── NotificationDialog.xaml.cs │ │ │ └── NotificationDialogViewModel.cs │ └── packages.lock.json ├── Icons │ ├── app.ico │ ├── app.ico.txt │ ├── package_black.png │ └── package_white.png ├── README.md ├── WebAuthn.sln └── docfx.json └── global.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/.github/README.md -------------------------------------------------------------------------------- /.github/workflows/autobuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/.github/workflows/autobuild.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.Adapter.ApiMapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.Adapter.ApiMapper.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.Adapter.WebAuthnApiAdapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.Adapter.WebAuthnApiAdapter.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.Adapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.Adapter.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.ApiVersion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.ApiVersion.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.AttestationConveyancePreference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.AttestationConveyancePreference.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.AuthenticationExtensionsClientInputs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.AuthenticationExtensionsClientInputs.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.AuthenticationExtensionsClientOutputs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.AuthenticationExtensionsClientOutputs.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.AuthenticatorAssertionResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.AuthenticatorAssertionResponse.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.AuthenticatorAttachment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.AuthenticatorAttachment.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.AuthenticatorAttestationResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.AuthenticatorAttestationResponse.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.AuthenticatorFlags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.AuthenticatorFlags.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.AuthenticatorResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.AuthenticatorResponse.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.AuthenticatorSelection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.AuthenticatorSelection.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.AuthenticatorTransport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.AuthenticatorTransport.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.Base64UrlConverter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.Base64UrlConverter.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.COSE.Algorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.COSE.Algorithm.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.COSE.EllipticCurve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.COSE.EllipticCurve.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.COSE.KeyCommonParameter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.COSE.KeyCommonParameter.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.COSE.KeyType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.COSE.KeyType.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.COSE.KeyTypeParameter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.COSE.KeyTypeParameter.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.COSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.COSE.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.CredentialDetails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.CredentialDetails.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.CredentialLargeBlobOperation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.CredentialLargeBlobOperation.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.EnterpriseAttestationType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.EnterpriseAttestationType.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.FIDO.AttestedCredentialData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.FIDO.AttestedCredentialData.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.FIDO.AuthenticatorData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.FIDO.AuthenticatorData.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.FIDO.CollectedClientData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.FIDO.CollectedClientData.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.FIDO.CredentialPublicKey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.FIDO.CredentialPublicKey.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.FIDO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.FIDO.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.HMACGetSecretInput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.HMACGetSecretInput.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.HMACGetSecretOutput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.HMACGetSecretOutput.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.HexConverter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.HexConverter.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.Interop.ApiConstants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.Interop.ApiConstants.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.Interop.HybridStorageLinkedData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.Interop.HybridStorageLinkedData.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.Interop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.Interop.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.JsonCustomEnumConverter-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.JsonCustomEnumConverter-1.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.LargeBlobSupport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.LargeBlobSupport.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.MicrosoftGraphWebauthnAttestationResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.MicrosoftGraphWebauthnAttestationResponse.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.MicrosoftGraphWebauthnCredentialCreationOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.MicrosoftGraphWebauthnCredentialCreationOptions.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.PublicKeyCredential.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.PublicKeyCredential.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.PublicKeyCredentialCreationOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.PublicKeyCredentialCreationOptions.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.PublicKeyCredentialDescriptor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.PublicKeyCredentialDescriptor.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.PublicKeyCredentialParameter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.PublicKeyCredentialParameter.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.RelyingPartyInformation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.RelyingPartyInformation.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.UserInformation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.UserInformation.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.UserVerification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.UserVerification.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.UserVerificationRequirement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.UserVerificationRequirement.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.WebAuthnApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.WebAuthnApi.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.WindowHandle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.WindowHandle.md -------------------------------------------------------------------------------- /Documentation/API/DSInternals.Win32.WebAuthn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/DSInternals.Win32.WebAuthn.md -------------------------------------------------------------------------------- /Documentation/API/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/API/toc.yml -------------------------------------------------------------------------------- /Documentation/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/CHANGELOG.md -------------------------------------------------------------------------------- /Documentation/PowerShell/Connect-Okta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/PowerShell/Connect-Okta.md -------------------------------------------------------------------------------- /Documentation/PowerShell/Disconnect-Okta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/PowerShell/Disconnect-Okta.md -------------------------------------------------------------------------------- /Documentation/PowerShell/Get-PasskeyRegistrationOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/PowerShell/Get-PasskeyRegistrationOptions.md -------------------------------------------------------------------------------- /Documentation/PowerShell/New-Passkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/PowerShell/New-Passkey.md -------------------------------------------------------------------------------- /Documentation/PowerShell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/PowerShell/README.md -------------------------------------------------------------------------------- /Documentation/PowerShell/Register-Passkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/PowerShell/Register-Passkey.md -------------------------------------------------------------------------------- /Documentation/Rohitab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/Rohitab/README.md -------------------------------------------------------------------------------- /Documentation/Rohitab/WebAuthn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/Rohitab/WebAuthn.xml -------------------------------------------------------------------------------- /Documentation/Screenshots/api_monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/Screenshots/api_monitor.png -------------------------------------------------------------------------------- /Documentation/Screenshots/api_monitor_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/Screenshots/api_monitor_options.png -------------------------------------------------------------------------------- /Documentation/Screenshots/fido2_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/Screenshots/fido2_ui.png -------------------------------------------------------------------------------- /Documentation/Screenshots/powershell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/Screenshots/powershell.png -------------------------------------------------------------------------------- /Documentation/Screenshots/webauthn_event_viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Documentation/Screenshots/webauthn_event_viewer.png -------------------------------------------------------------------------------- /Keys/DSInternals.Public.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Keys/DSInternals.Public.snk -------------------------------------------------------------------------------- /Keys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Keys/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/LICENSE -------------------------------------------------------------------------------- /Scripts/Build-PowerShellModule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Scripts/Build-PowerShellModule.ps1 -------------------------------------------------------------------------------- /Scripts/Update-PowerShellDocumentation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Scripts/Update-PowerShellDocumentation.ps1 -------------------------------------------------------------------------------- /Src/DSInternals.Passkeys/DSInternals.Passkeys.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Passkeys/DSInternals.Passkeys.Tests.ps1 -------------------------------------------------------------------------------- /Src/DSInternals.Passkeys/DSInternals.Passkeys.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Passkeys/DSInternals.Passkeys.psd1 -------------------------------------------------------------------------------- /Src/DSInternals.Passkeys/DSInternals.Passkeys.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Passkeys/DSInternals.Passkeys.psm1 -------------------------------------------------------------------------------- /Src/DSInternals.Passkeys/en-US/DSInternals.Passkeys-help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Passkeys/en-US/DSInternals.Passkeys-help.xml -------------------------------------------------------------------------------- /Src/DSInternals.Passkeys/en-US/about_DSInternals.Passkeys.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Passkeys/en-US/about_DSInternals.Passkeys.help.txt -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn.Adapter.Tests/ApiMapperTester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn.Adapter.Tests/ApiMapperTester.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn.Adapter.Tests/DSInternals.Win32.WebAuthn.Adaper.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn.Adapter.Tests/DSInternals.Win32.WebAuthn.Adaper.Tests.csproj -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn.Adapter.Tests/WebAuthnApiAdapterTester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn.Adapter.Tests/WebAuthnApiAdapterTester.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn.Adapter.Tests/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn.Adapter.Tests/packages.lock.json -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn.Adapter/ApiMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn.Adapter/ApiMapper.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn.Adapter/DSInternals.Win32.WebAuthn.Adapter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn.Adapter/DSInternals.Win32.WebAuthn.Adapter.csproj -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn.Adapter/WebAuthnApiAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn.Adapter/WebAuthnApiAdapter.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn.Adapter/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn.Adapter/packages.lock.json -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn.Tests/DSInternals.Win32.WebAuthn.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn.Tests/DSInternals.Win32.WebAuthn.Tests.csproj -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn.Tests/FIDO/Base64UrlConverterTester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn.Tests/FIDO/Base64UrlConverterTester.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn.Tests/FIDO/CollectedClientDataTester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn.Tests/FIDO/CollectedClientDataTester.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn.Tests/Interop/ApiHelperTester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn.Tests/Interop/ApiHelperTester.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn.Tests/Interop/AuthenticationExtensionsTester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn.Tests/Interop/AuthenticationExtensionsTester.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn.Tests/Interop/NativeMethodsTester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn.Tests/Interop/NativeMethodsTester.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn.Tests/Interop/WebAuthnApiTester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn.Tests/Interop/WebAuthnApiTester.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn.Tests/Interop/WindowHandleTester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn.Tests/Interop/WindowHandleTester.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn.Tests/MicrosoftGraphWebauthnCredentialCreationOptionsTester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn.Tests/MicrosoftGraphWebauthnCredentialCreationOptionsTester.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn.Tests/PublicKeyCredentialCreationOptionsTester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn.Tests/PublicKeyCredentialCreationOptionsTester.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn.Tests/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn.Tests/packages.lock.json -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/AuthenticationExtensionsClientInputs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/AuthenticationExtensionsClientInputs.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/AuthenticationExtensionsClientOutputs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/AuthenticationExtensionsClientOutputs.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/AuthenticatorAssertionResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/AuthenticatorAssertionResponse.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/AuthenticatorAttestationResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/AuthenticatorAttestationResponse.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/AuthenticatorResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/AuthenticatorResponse.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/AuthenticatorSelection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/AuthenticatorSelection.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/COSE/Algorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/COSE/Algorithm.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/COSE/EllipticCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/COSE/EllipticCurve.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/COSE/KeyCommonparameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/COSE/KeyCommonparameter.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/COSE/KeyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/COSE/KeyType.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/COSE/KeyTypeParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/COSE/KeyTypeParameter.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/CredentialDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/CredentialDetails.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/DSInternals.Win32.WebAuthn.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/DSInternals.Win32.WebAuthn.csproj -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/EntraID/MicrosoftGraphWebauthnAttestationResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/EntraID/MicrosoftGraphWebauthnAttestationResponse.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/EntraID/MicrosoftGraphWebauthnCredentialCreationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/EntraID/MicrosoftGraphWebauthnCredentialCreationOptions.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Enums/ApiVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Enums/ApiVersion.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Enums/AttestationConveyancePreference .cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Enums/AttestationConveyancePreference .cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Enums/AuthenticatorAttachment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Enums/AuthenticatorAttachment.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Enums/AuthenticatorFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Enums/AuthenticatorFlags.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Enums/AuthenticatorTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Enums/AuthenticatorTransport.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Enums/CredentialLargeBlobOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Enums/CredentialLargeBlobOperation.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Enums/CredentialLargeBlobStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Enums/CredentialLargeBlobStatus.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Enums/EnterpriseAttestationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Enums/EnterpriseAttestationType.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Enums/LargeBlobSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Enums/LargeBlobSupport.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Enums/UserVerification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Enums/UserVerification.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Enums/UserVerificationRequirement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Enums/UserVerificationRequirement.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Extensions/HexConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Extensions/HexConverter.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/FIDO/AttestedCredentialData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/FIDO/AttestedCredentialData.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/FIDO/AuthenticatorData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/FIDO/AuthenticatorData.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/FIDO/CollectedClientData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/FIDO/CollectedClientData.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/FIDO/CredentialPublicKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/FIDO/CredentialPublicKey.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/HMACGetSecretInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/HMACGetSecretInput.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/HMACGetSecretOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/HMACGetSecretOutput.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/ApiConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/ApiConstants.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/ApiHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/ApiHelper.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/EndianBitConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/EndianBitConverter.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Enums/AssertionOptionsFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Enums/AssertionOptionsFlags.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Enums/AttestationDecode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Enums/AttestationDecode.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Enums/HResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Enums/HResult.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Marshalers/AssertionSafeHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Marshalers/AssertionSafeHandle.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Marshalers/ByteArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Marshalers/ByteArray.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Marshalers/CredentialAttestationSafeHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Marshalers/CredentialAttestationSafeHandle.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Marshalers/DisposableList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Marshalers/DisposableList.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Marshalers/PlatformCredentialListSafeHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Marshalers/PlatformCredentialListSafeHandle.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Marshalers/PtrToConstStringMarshaler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Marshalers/PtrToConstStringMarshaler.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Marshalers/SafeStructArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Marshalers/SafeStructArray.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Marshalers/VersionedStructMarshaler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Marshalers/VersionedStructMarshaler.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/NativeMethods.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/StructVersions/AssertionVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/StructVersions/AssertionVersion.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/StructVersions/AuthenticatorGetAssertionOptionsVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/StructVersions/AuthenticatorGetAssertionOptionsVersion.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/StructVersions/AuthenticatorMakeCredentialOptionsVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/StructVersions/AuthenticatorMakeCredentialOptionsVersion.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/StructVersions/ClientDataVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/StructVersions/ClientDataVersion.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/StructVersions/CommonAttestationVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/StructVersions/CommonAttestationVersion.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/StructVersions/CoseCredentialParameterVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/StructVersions/CoseCredentialParameterVersion.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/StructVersions/CredentialAttestationVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/StructVersions/CredentialAttestationVersion.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/StructVersions/CredentialDetailsVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/StructVersions/CredentialDetailsVersion.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/StructVersions/CredentialExVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/StructVersions/CredentialExVersion.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/StructVersions/CredentialVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/StructVersions/CredentialVersion.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/StructVersions/GetCredentialOptionsVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/StructVersions/GetCredentialOptionsVersion.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/StructVersions/HybridStorageLinkedDataVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/StructVersions/HybridStorageLinkedDataVersion.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/StructVersions/RelyingPartyInformationVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/StructVersions/RelyingPartyInformationVersion.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/StructVersions/UserInformationVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/StructVersions/UserInformationVersion.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Structs/ClientData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Structs/ClientData.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Structs/Credential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Structs/Credential.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Structs/CredentialEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Structs/CredentialEx.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Structs/CredentialExList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Structs/CredentialExList.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Structs/CredentialWithHmacSecretSalt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Structs/CredentialWithHmacSecretSalt.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Structs/Credentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Structs/Credentials.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Structs/Extension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Structs/Extension.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Structs/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Structs/Extensions.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Structs/GetAssertion/Assertion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Structs/GetAssertion/Assertion.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Structs/GetAssertion/AuthenticatorGetAssertionOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Structs/GetAssertion/AuthenticatorGetAssertionOptions.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Structs/GetCredentialList/CredentialDetailsList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Structs/GetCredentialList/CredentialDetailsList.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Structs/GetCredentialList/CredentialDetailsOut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Structs/GetCredentialList/CredentialDetailsOut.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Structs/GetCredentialList/GetCredentialsOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Structs/GetCredentialList/GetCredentialsOptions.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Structs/GetCredentialList/UserInformationOut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Structs/GetCredentialList/UserInformationOut.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Structs/HmacSecretSalt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Structs/HmacSecretSalt.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Structs/HmacSecretSaltValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Structs/HmacSecretSaltValues.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Structs/HybridStorageLinkedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Structs/HybridStorageLinkedData.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Structs/MakeCredential/AuthenticatorMakeCredentialOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Structs/MakeCredential/AuthenticatorMakeCredentialOptions.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Structs/MakeCredential/Certificate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Structs/MakeCredential/Certificate.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Structs/MakeCredential/CommonAttestation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Structs/MakeCredential/CommonAttestation.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Structs/MakeCredential/CoseCredentialParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Structs/MakeCredential/CoseCredentialParameter.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Structs/MakeCredential/CredentialAttestation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Structs/MakeCredential/CredentialAttestation.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Structs/MakeCredential/UserInformationIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Structs/MakeCredential/UserInformationIn.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Structs/PreviousVersions/AssertionV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Structs/PreviousVersions/AssertionV1.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Structs/PreviousVersions/AssertionV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Structs/PreviousVersions/AssertionV2.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Structs/PreviousVersions/AssertionV3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Structs/PreviousVersions/AssertionV3.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Structs/PreviousVersions/AssertionV4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Structs/PreviousVersions/AssertionV4.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Structs/PreviousVersions/CredentialAttestationV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Structs/PreviousVersions/CredentialAttestationV1.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Structs/PreviousVersions/CredentialAttestationV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Structs/PreviousVersions/CredentialAttestationV2.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Structs/PreviousVersions/CredentialAttestationV3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Structs/PreviousVersions/CredentialAttestationV3.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Structs/PreviousVersions/CredentialAttestationV4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Structs/PreviousVersions/CredentialAttestationV4.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Structs/PreviousVersions/CredentialAttestationV5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Structs/PreviousVersions/CredentialAttestationV5.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Interop/Structs/PreviousVersions/CredentialDetailsV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Interop/Structs/PreviousVersions/CredentialDetailsV1.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/NativeMethods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/NativeMethods.json -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/NativeMethods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/NativeMethods.txt -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Okta/OktaFido2AuthenticationMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Okta/OktaFido2AuthenticationMethod.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Okta/OktaWebauthnAttestationResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Okta/OktaWebauthnAttestationResponse.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Okta/OktaWebauthnCredentialCreationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Okta/OktaWebauthnCredentialCreationOptions.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/PublicKeyCredential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/PublicKeyCredential.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/PublicKeyCredentialCreationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/PublicKeyCredentialCreationOptions.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/PublicKeyCredentialDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/PublicKeyCredentialDescriptor.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/PublicKeyCredentialParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/PublicKeyCredentialParameter.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/RelyingPartyInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/RelyingPartyInformation.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Serialization/Base64UrlConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Serialization/Base64UrlConverter.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/Serialization/JsonCustomEnumConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/Serialization/JsonCustomEnumConverter.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/UserInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/UserInformation.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/WebAuthnApi.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/WebAuthnApi.Async.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/WebAuthnApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/WebAuthnApi.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/WebauthnAttestationResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/WebauthnAttestationResponse.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/WebauthnCredentialCreationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/WebauthnCredentialCreationOptions.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/WindowHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/WindowHandle.cs -------------------------------------------------------------------------------- /Src/DSInternals.Win32.WebAuthn/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/DSInternals.Win32.WebAuthn/packages.lock.json -------------------------------------------------------------------------------- /Src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Directory.Build.props -------------------------------------------------------------------------------- /Src/Fido2UI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Fido2UI/App.xaml -------------------------------------------------------------------------------- /Src/Fido2UI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Fido2UI/App.xaml.cs -------------------------------------------------------------------------------- /Src/Fido2UI/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Fido2UI/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/Fido2UI/Controls/TimeoutEditor.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Fido2UI/Controls/TimeoutEditor.xaml -------------------------------------------------------------------------------- /Src/Fido2UI/Controls/TimeoutEditor.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Fido2UI/Controls/TimeoutEditor.xaml.cs -------------------------------------------------------------------------------- /Src/Fido2UI/DesignTimeResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Fido2UI/DesignTimeResources.xaml -------------------------------------------------------------------------------- /Src/Fido2UI/Fido2UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Fido2UI/Fido2UI.csproj -------------------------------------------------------------------------------- /Src/Fido2UI/Helpers/EnumAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Fido2UI/Helpers/EnumAdapter.cs -------------------------------------------------------------------------------- /Src/Fido2UI/Views/AlgorithmSelector/AlgorithmSelectorView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Fido2UI/Views/AlgorithmSelector/AlgorithmSelectorView.xaml -------------------------------------------------------------------------------- /Src/Fido2UI/Views/AlgorithmSelector/AlgorithmSelectorView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Fido2UI/Views/AlgorithmSelector/AlgorithmSelectorView.xaml.cs -------------------------------------------------------------------------------- /Src/Fido2UI/Views/AlgorithmSelector/AlgorithmSelectorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Fido2UI/Views/AlgorithmSelector/AlgorithmSelectorViewModel.cs -------------------------------------------------------------------------------- /Src/Fido2UI/Views/AlgorithmSelector/IAlgorithmSelectorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Fido2UI/Views/AlgorithmSelector/IAlgorithmSelectorViewModel.cs -------------------------------------------------------------------------------- /Src/Fido2UI/Views/ApiInformation/ApiInformationView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Fido2UI/Views/ApiInformation/ApiInformationView.xaml -------------------------------------------------------------------------------- /Src/Fido2UI/Views/ApiInformation/ApiInformationView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Fido2UI/Views/ApiInformation/ApiInformationView.xaml.cs -------------------------------------------------------------------------------- /Src/Fido2UI/Views/ApiInformation/ApiInformationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Fido2UI/Views/ApiInformation/ApiInformationViewModel.cs -------------------------------------------------------------------------------- /Src/Fido2UI/Views/AssertionOptions/AssertionOptionsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Fido2UI/Views/AssertionOptions/AssertionOptionsView.xaml -------------------------------------------------------------------------------- /Src/Fido2UI/Views/AssertionOptions/AssertionOptionsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Fido2UI/Views/AssertionOptions/AssertionOptionsView.xaml.cs -------------------------------------------------------------------------------- /Src/Fido2UI/Views/AssertionOptions/AssertionOptionsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Fido2UI/Views/AssertionOptions/AssertionOptionsViewModel.cs -------------------------------------------------------------------------------- /Src/Fido2UI/Views/AssertionOptions/IAssertionOptionsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Fido2UI/Views/AssertionOptions/IAssertionOptionsViewModel.cs -------------------------------------------------------------------------------- /Src/Fido2UI/Views/AttestationOptions/AttestationOptionsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Fido2UI/Views/AttestationOptions/AttestationOptionsView.xaml -------------------------------------------------------------------------------- /Src/Fido2UI/Views/AttestationOptions/AttestationOptionsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Fido2UI/Views/AttestationOptions/AttestationOptionsView.xaml.cs -------------------------------------------------------------------------------- /Src/Fido2UI/Views/AttestationOptions/AttestationOptionsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Fido2UI/Views/AttestationOptions/AttestationOptionsViewModel.cs -------------------------------------------------------------------------------- /Src/Fido2UI/Views/AttestationOptions/IAttestationOptionsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Fido2UI/Views/AttestationOptions/IAttestationOptionsViewModel.cs -------------------------------------------------------------------------------- /Src/Fido2UI/Views/CredentialManagement/CredentialManagementView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Fido2UI/Views/CredentialManagement/CredentialManagementView.xaml -------------------------------------------------------------------------------- /Src/Fido2UI/Views/CredentialManagement/CredentialManagementView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Fido2UI/Views/CredentialManagement/CredentialManagementView.xaml.cs -------------------------------------------------------------------------------- /Src/Fido2UI/Views/CredentialManagement/CredentialManagementViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Fido2UI/Views/CredentialManagement/CredentialManagementViewModel.cs -------------------------------------------------------------------------------- /Src/Fido2UI/Views/CredentialManagement/ICredentialManagementViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Fido2UI/Views/CredentialManagement/ICredentialManagementViewModel.cs -------------------------------------------------------------------------------- /Src/Fido2UI/Views/MainWindow/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Fido2UI/Views/MainWindow/MainWindow.xaml -------------------------------------------------------------------------------- /Src/Fido2UI/Views/MainWindow/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Fido2UI/Views/MainWindow/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Src/Fido2UI/Views/MainWindow/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Fido2UI/Views/MainWindow/MainWindowViewModel.cs -------------------------------------------------------------------------------- /Src/Fido2UI/Views/NotificationDialog/NotificationDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Fido2UI/Views/NotificationDialog/NotificationDialog.xaml -------------------------------------------------------------------------------- /Src/Fido2UI/Views/NotificationDialog/NotificationDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Fido2UI/Views/NotificationDialog/NotificationDialog.xaml.cs -------------------------------------------------------------------------------- /Src/Fido2UI/Views/NotificationDialog/NotificationDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Fido2UI/Views/NotificationDialog/NotificationDialogViewModel.cs -------------------------------------------------------------------------------- /Src/Fido2UI/packages.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Fido2UI/packages.lock.json -------------------------------------------------------------------------------- /Src/Icons/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Icons/app.ico -------------------------------------------------------------------------------- /Src/Icons/app.ico.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Icons/app.ico.txt -------------------------------------------------------------------------------- /Src/Icons/package_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Icons/package_black.png -------------------------------------------------------------------------------- /Src/Icons/package_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/Icons/package_white.png -------------------------------------------------------------------------------- /Src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/README.md -------------------------------------------------------------------------------- /Src/WebAuthn.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/WebAuthn.sln -------------------------------------------------------------------------------- /Src/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/Src/docfx.json -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MichaelGrafnetter/webauthn-interop/HEAD/global.json --------------------------------------------------------------------------------