Changeset 102491 in vbox for trunk/include
- Timestamp:
- Dec 6, 2023 12:48:47 AM (14 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/crypto/shacrypt.h
r102488 r102491 115 115 * RT_SHACRYPT_MAX_SALT_LEN, both inclusive. 116 116 * 117 * @param cRounds Number of rounds to use (@see 118 * RT_SHACRYPT_ROUNDS_DEFAULT). This is ignored if the 119 * salt includes a 'rounds=xxx$' part. 117 * @param cRounds Number of rounds to use, must be in the range 118 * RT_SHACRYPT_ROUNDS_MIN thru RT_SHACRYPT_ROUNDS_MAX. 119 * If unsure, use RT_SHACRYPT_ROUNDS_DEFAULT. This is 120 * ignored if the salt includes a 'rounds=xxx$' part. 120 121 * @param pszString Where to store the string on success. 121 122 * @param cbString The size of the buffer pointed to by @a pszString. … … 145 146 * RT_SHACRYPT_MAX_SALT_LEN, both inclusive. 146 147 * 148 * @param cRounds Number of rounds to use, must be in the range 149 * RT_SHACRYPT_ROUNDS_MIN thru RT_SHACRYPT_ROUNDS_MAX. 150 * If unsure, use RT_SHACRYPT_ROUNDS_DEFAULT. This is 151 * ignored if the salt includes a 'rounds=xxx$' part. 147 152 * @param pszString Where to store the string on success. 148 153 * @param cbString The size of the buffer pointed to by @a pszString. … … 175 180 * RT_SHACRYPT_MAX_SALT_LEN, both inclusive. 176 181 * 177 * @param cRounds Number of rounds to use (@see 178 * RT_SHACRYPT_ROUNDS_DEFAULT). 182 * @param cRounds Number of rounds to use, must be in the range 183 * RT_SHACRYPT_ROUNDS_MIN thru RT_SHACRYPT_ROUNDS_MAX. 184 * If unsure, use RT_SHACRYPT_ROUNDS_DEFAULT. This is 185 * ignored if the salt includes a 'rounds=xxx$' part. 179 186 * @param pabHash Where to return the hash on success. 180 187 * @see RTCrShaCrypt256, RTCrShaCrypt256ToString … … 201 208 * RT_SHACRYPT_MAX_SALT_LEN, both inclusive. 202 209 * 203 * @param cRounds Number of rounds to use (@see 204 * RT_SHACRYPT_ROUNDS_DEFAULT). 210 * @param cRounds Number of rounds to use, must be in the range 211 * RT_SHACRYPT_ROUNDS_MIN thru RT_SHACRYPT_ROUNDS_MAX. 212 * If unsure, use RT_SHACRYPT_ROUNDS_DEFAULT. This is 213 * ignored if the salt includes a 'rounds=xxx$' part. 205 214 * @param pabHash Where to return the hash on success. 206 215 * @see RTCrShaCrypt512, RTCrShaCrypt512ToString
Note:
See TracChangeset
for help on using the changeset viewer.