Edit

WEBAUTHN_PLUGIN_OPERATION_RESPONSE structure (pluginauthenticator.h)

Contains the encoded response returned by a plugin authenticator.

Syntax

typedef struct _WEBAUTHN_PLUGIN_OPERATION_RESPONSE {
  DWORD cbEncodedResponse;
  byte  *pbEncodedResponse;
} WEBAUTHN_PLUGIN_OPERATION_RESPONSE, *PWEBAUTHN_PLUGIN_OPERATION_RESPONSE;

Members

cbEncodedResponse

The size, in bytes, of the encoded response pointed to by pbEncodedResponse.

pbEncodedResponse

A pointer to the encoded response payload.

Remarks

A plugin authenticator implementation fills this structure before returning from IPluginAuthenticator::MakeCredential or IPluginAuthenticator::GetAssertion.

Requirements

Requirement Value
Header pluginauthenticator.h

See also

IPluginAuthenticator::MakeCredential

IPluginAuthenticator::GetAssertion