Changeset 102297 in vbox for trunk/include
- Timestamp:
- Nov 24, 2023 4:32:03 PM (13 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/crypto/shacrypt.h
r102296 r102297 81 81 * @param cRounds Number of rounds used for generating \a pabHash. 82 82 * @param pszString Where to store the printable string on success. 83 * @param cbString Size (in bytes) of \a pszString. 83 * @param cchString Size of \a pszString. 84 * Should be at least RTSHA256_DIGEST_LEN + 1 bytes. 84 85 * 85 86 * @note This implements step 22 of SHA-crypt.txt Version: 0.6 2016-8-31. 86 87 */ 87 RTR3DECL(int) RTCrShaCrypt256ToString(uint8_t abHash[RTSHA256_HASH_SIZE], const char *pszSalt, uint32_t cRounds, char *pszString, size_t c bString);88 RTR3DECL(int) RTCrShaCrypt256ToString(uint8_t abHash[RTSHA256_HASH_SIZE], const char *pszSalt, uint32_t cRounds, char *pszString, size_t cchString); 88 89 89 90 … … 111 112 * @param cRounds Number of rounds used for generating \a pabHash. 112 113 * @param pszString Where to store the printable string on success. 113 * @param cbString Size (in bytes) of \a pszString. 114 * @param cchString Size of \a pszString. 115 * Should be at least RTSHA512_DIGEST_LEN + 1 bytes. 114 116 * 115 117 * @note This implements step 22 of SHA-crypt.txt Version: 0.6 2016-8-31. 116 118 */ 117 RTR3DECL(int) RTCrShaCrypt512ToString(uint8_t abHash[RTSHA512_HASH_SIZE], const char *pszSalt, uint32_t cRounds, char *pszString, size_t c bString);119 RTR3DECL(int) RTCrShaCrypt512ToString(uint8_t abHash[RTSHA512_HASH_SIZE], const char *pszSalt, uint32_t cRounds, char *pszString, size_t cchString); 118 120 119 121 /** @} */
Note:
See TracChangeset
for help on using the changeset viewer.