Edit

WEBAUTHN_PLUGIN_ADD_AUTHENTICATOR_RESPONSE structure (webauthnplugin.h)

Contains the response returned when a plugin authenticator is registered.

Syntax

typedef struct _WEBAUTHN_PLUGIN_ADD_AUTHENTICATOR_RESPONSE {
  DWORD cbOpSignPubKey;
  PBYTE pbOpSignPubKey;
} WEBAUTHN_PLUGIN_ADD_AUTHENTICATOR_RESPONSE, *PWEBAUTHN_PLUGIN_ADD_AUTHENTICATOR_RESPONSE;

Members

cbOpSignPubKey

The size, in bytes, of the operation-signing public key pointed to by pbOpSignPubKey.

pbOpSignPubKey

A pointer to the operation-signing public key that the plugin uses to sign WEBAUTHN_PLUGIN_OPERATION_REQUEST payloads.

Remarks

Use this structure with WebAuthNPluginAddAuthenticator or EXPERIMENTAL_WebAuthNPluginAddAuthenticator2.

Requirements

Requirement Value
Header webauthnplugin.h

See also

WEBAUTHN_PLUGIN_OPERATION_REQUEST