Changeset 33294 in vbox for trunk/src/VBox/HostServices
- Timestamp:
- Oct 21, 2010 10:45:26 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/auth/simple/VBoxAuthSimple.cpp
r33229 r33294 101 101 { 102 102 ComPtr<IMachine> machine; 103 virtualBox-> GetMachine(Bstr(uuid).raw(), machine.asOutParam());103 virtualBox->FindMachine(Bstr(uuid).raw(), machine.asOutParam()); 104 104 if (machine) 105 105 machine->GetExtraData(key.raw(), password.asOutParam()); … … 115 115 char pszDigest[RTSHA256_DIGEST_LEN + 1]; 116 116 RTSha256ToString(abDigest, pszDigest, sizeof(pszDigest)); 117 117 118 118 if (password == pszDigest) 119 119 result = VRDPAuthAccessGranted;
Note:
See TracChangeset
for help on using the changeset viewer.