Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions lib/auth/webauthnwin/ctypes.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ type webauthnRPEntityInformation struct {
// "Acme Corporation", "Widgets Inc" or "Awesome Site".
// This field is required.
pwszName *uint16

// RP icon (previously pwszIcon).
// This field is kept just to keep size of struct valid.
_ *uint16
}

type webauthnUserEntityInformation struct {
Expand All @@ -46,6 +50,9 @@ type webauthnUserEntityInformation struct {
// "john.p.smith@example.com".
// It holds the Teleport user name.
pwszName *uint16
// User icon (previously pwszIcon).
// This field is kept just to keep size of struct valid.
_ *uint16
// For User: Contains the friendly name associated with the user account by the Relying Party, such as "John P. Smith".
pwszDisplayName *uint16
}
Expand Down