Home | History | Annotate | Download | only in IpsecConfig

Lines Matching refs:AuthKeyLength

605   UINTN           AuthKeyLength;

614 AuthKeyLength = 0;
657 AuthKeyLength = StrLen (ValueStr);
679 DataSize = ALIGN_VARIABLE (DataSize + AuthKeyLength);
693 ((UINT8 *) (*Data)->AlgoInfo.EspAlgoInfo.AuthKey + AuthKeyLength),
815 (*Data)->AlgoInfo.EspAlgoInfo.AuthKeyLength = AuthKeyLength;
816 AsciiStr = AllocateZeroPool (AuthKeyLength + 1);
818 UnicodeStrToAsciiStrS (ValueStr, AsciiStr, AuthKeyLength + 1);
819 CopyMem ((*Data)->AlgoInfo.EspAlgoInfo.AuthKey, AsciiStr, AuthKeyLength);
1607 OldData->AlgoInfo.EspAlgoInfo.AuthKeyLength = NewData->AlgoInfo.EspAlgoInfo.AuthKeyLength;