Changeset 102361 in vbox for trunk/include
- Timestamp:
- Nov 28, 2023 12:53:33 PM (15 months ago)
- svn:sync-xref-src-repo-rev:
- 160497
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/crypto/shacrypt.h
r102360 r102361 62 62 * 63 63 * @returns IPRT status code. 64 * @param szSalt Where to store the generated salt. 65 * @param cchSalt Number of characters the generated salt should use. 64 * @param pszSalt Where to store the generated salt. 65 * @param cchSalt Size of \a pszSalt. 66 * Also marks the number of characters the generated salt should use. 66 67 * Must be >= RT_SHACRYPT_MIN_SALT_LEN and <= RT_SHACRYPT_MAX_SALT_LEN. 67 68 */ 68 RTR3DECL(int) RTCrShaCryptGenerateSalt(char szSalt[RT_SHACRYPT_MAX_SALT_LEN + 1], size_t cchSalt);69 RTR3DECL(int) RTCrShaCryptGenerateSalt(char *pszSalt, size_t cchSalt); 69 70 70 71
Note:
See TracChangeset
for help on using the changeset viewer.