Changeset 85238 in vbox for trunk/src/VBox/Main/src-all
- Timestamp:
- Jul 11, 2020 4:37:56 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 139215
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-all/HashedPw.cpp
r82968 r85238 96 96 uint8_t abHash[RTSHA512_HASH_SIZE]; 97 97 RTSha512(a_pstrPassword->c_str(), a_pstrPassword->length(), abHash); 98 int rc = RTSha512ToString(abHash, pszHashedPw, sizeof(szHashedPw) - ( pszHashedPw - &szHashedPw[0]));98 int rc = RTSha512ToString(abHash, pszHashedPw, sizeof(szHashedPw) - (size_t)(pszHashedPw - &szHashedPw[0])); 99 99 AssertReleaseRC(rc); 100 100 }
Note:
See TracChangeset
for help on using the changeset viewer.