Generates a response for the specified challenge string.
Namespace: Microsoft.Clm.Provision
Assembly: Microsoft.Clm.Provision (in microsoft.clm.provision.dll)

Usage

Visual Basic
Dim requestUuid As Guid
Dim challengeString As String
Dim returnValue As String

returnValue = ExecuteOperations.OfflineUnblock(requestUuid, challengeString)

Syntax

Visual Basic
Public Shared Function OfflineUnblock ( _
		requestUuid As Guid, _
		challengeString As String _
) As String
C#
public static string OfflineUnblock (
		Guid requestUuid,
		string challengeString
)
C++
public:
static String^ OfflineUnblock (
		Guid requestUuid, 
		String^ challengeString
)
J#
public static String OfflineUnblock (
		Guid requestUuid, 
		String challengeString
)
JScript
public static function OfflineUnblock (
		requestUuid : Guid, 
		challengeString : String
) : String

Parameters

requestUuid

A Guid object that identifies the FIM CM request.

challengeString

The challenge issued by the base CSP card.

Return Value

A String object that contains the response to the provided challenge string. The response is calculated based on the key that the FIM CM has for that particular card.

Remarks

The response is calculated based on the key (potentially a diversified key) that FIM CM has for the card. The challenge is issued by the card and the response, generated by this function call, should be passed to the card in the same session. The card should accept the response and thereby authenticate you to the card.


Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows 2008 x64 Edition

Target Platforms

Windows XP SP3, Windows Vista SP1+, Windows 7, Windows Server 2008, Windows Server 2008 R2

See Also