Determines whether the response code is a valid response for the challenge code.
protected virtual bool ExternalAuthenticateIscl(
long ,
long ,
long
)
'Declaration
Protected Overridable Function ExternalAuthenticateIscl( _
ByVal As Long, _
ByVal As Long, _
ByVal As Long _
) As Boolean
'Usage
Dim instance As DicomNet
Dim challenge As Long
Dim response As Long
Dim parameter As Long
Dim value As Boolean
value = instance.ExternalAuthenticateIscl(challenge, response, parameter)
protected virtual bool ExternalAuthenticateIscl(
long challenge,
long response,
long parameter
)
function Leadtools.Dicom.DicomNet.ExternalAuthenticateIscl(
challenge ,
response ,
parameter
)
protected:
virtual bool ExternalAuthenticateIscl(
int64 ,
int64 ,
int64
)
Parameters
- challenge
- The challenge code sent to the peer computer. This value is similar to a time stamp. The method will determine whether the response code in the parameter is a valid response for this challenge code.
- response
- The response code generated by the peer computer. This value is similar to a time stamp. The method will determine whether this response code is a valid response for the challenge code in the parameter.
- parameter
- A value that indicates the current mutual authentication key.
Return Value
true if the response code and challenge code match; otherwise, false.