Validates a user-provided one-time password.
Namespace: Microsoft.Clm
Assembly: Microsoft.Clm.Common (in microsoft.clm.common.dll)

Usage

Visual Basic
Dim instance As ISecretProvider
Dim secret As String
Dim returnValue As Boolean

returnValue = instance.ValidateSecretIntegrity(secret)

Syntax

Visual Basic
Function ValidateSecretIntegrity ( _
		secret As String _
) As Boolean
C#
bool ValidateSecretIntegrity (
		string secret
)
C++
bool ValidateSecretIntegrity (
		String^ secret
)
J#
boolean ValidateSecretIntegrity (
		String secret
)
JScript
function ValidateSecretIntegrity (
		secret : String
) : boolean

Parameters

secret

A String object that contains the one-time password to be validated.

Return Value

true if the one-time password passes validation; otherwise, false.

Remarks

This method validates a one-time password using a CRC-like algorithm.

This method is not implemented in FIM CM version 1 and is reserved for future use.


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