Table of Contents

Class PhpCompatibleAuthenticator

Namespace
WINKOnvif.Core.Authentication
Assembly
WINKOnvif.Core.dll

Authenticator compatible with PHP implementation that uses specific timestamp format with milliseconds and different password digest calculation method

public class PhpCompatibleAuthenticator : IAuthenticator
Inheritance
PhpCompatibleAuthenticator
Implements
Inherited Members

Constructors

PhpCompatibleAuthenticator(ILogger<PhpCompatibleAuthenticator>)

public PhpCompatibleAuthenticator(ILogger<PhpCompatibleAuthenticator> logger)

Parameters

logger ILogger<PhpCompatibleAuthenticator>

Methods

ApplyAuthentication(XmlDocument, OnvifCredentials)

public void ApplyAuthentication(XmlDocument soapRequest, OnvifCredentials credentials)

Parameters

soapRequest XmlDocument
credentials OnvifCredentials

ApplyAuthentication<TClient, TContract>(TClient, OnvifCredentials)

Applies authentication to a SOAP client

public void ApplyAuthentication<TClient, TContract>(TClient client, OnvifCredentials credentials) where TClient : ClientBase<TContract> where TContract : class

Parameters

client TClient

The client to apply authentication to

credentials OnvifCredentials

Credentials to use for authentication

Type Parameters

TClient

Type of the client

TContract

Type of the service contract

GenerateWsseSecurityHeader(OnvifCredentials)

Generates the WSSE Security XML fragment to be inserted into the SOAP header. Uses the PHP-compatible format with milliseconds in timestamp.

public string GenerateWsseSecurityHeader(OnvifCredentials credentials)

Parameters

credentials OnvifCredentials

Returns

string

GetAuthHeaderAsync(HttpRequestMessage, OnvifCredentials)

Gets authentication header for HTTP requests

public Task<AuthenticationHeaderValue> GetAuthHeaderAsync(HttpRequestMessage request, OnvifCredentials credentials)

Parameters

request HttpRequestMessage

The HTTP request to authenticate

credentials OnvifCredentials

Credentials to use for authentication

Returns

Task<AuthenticationHeaderValue>

Authentication header value