/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Identity/test/Identity.Test/Passkeys/AttestedCredentialDataArgs.cs
11 строк
449 B
Mackinnon Buck
Add passkey tests verifying WebAuthn conformance (#62441)
27 июн 2025, 00:53
Не верифицирован
27 июн 2025, 00:53
496f01b
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.AspNetCore.Identity.Test; internal readonly struct AttestedCredentialDataArgs { public required ReadOnlyMemory<byte> Aaguid { get; init; } public required ReadOnlyMemory<byte> CredentialId { get; init; } public required ReadOnlyMemory<byte> CredentialPublicKey { get; init; } }