Home | History | Annotate | Download | only in IScsiDxe

Lines Matching refs:Response

97   The initator checks the CHAP response replied by target against its own

101 @param[in] TargetResponse The response from target.
103 @retval EFI_SUCCESS The response from target passed authentication.
104 @retval EFI_SECURITY_VIOLATION The response from target was not expected value.
139 This function checks the received iSCSI Login Response during the security
144 @retval EFI_SUCCESS The Login Response passed the CHAP validation.
166 CHAR8 *Response;
187 // Build the key-value list from the data segment of the Login Response.
200 // The first Login Response.
269 // Calculate Response value.
312 Response = IScsiGetValueByKeyFromList (KeyValueList, ISCSI_KEY_CHAP_RESPONSE);
313 if (Response == NULL) {
318 IScsiHexToBin (TargetRsp, &RspLen, Response);
321 // Check the CHAP Name and Response replied by Target.
367 CHAR8 *Response;
383 Response = AllocateZeroPool (RspLen);
384 if (Response == NULL) {
391 FreePool (Response);
442 IScsiBinToHex ((UINT8 *) AuthData->CHAPResponse, ISCSI_CHAP_RSP_LEN, Response, &RspLen);
443 IScsiAddKeyValuePair (Pdu, ISCSI_KEY_CHAP_RESPONSE, Response);
473 FreePool (Response);