Differences From Artifact [77947b171a]:
- File
src/OFScrypt.h
— part of check-in
[2fcf5a3052]
at
2021-04-29 23:24:22
on branch trunk
— Clean up struct and enum typedefs
With TYPEDEF_HIDES_STRUCT set, Doxygen properly handles anonymous
structs and enums that are typedef'd. (user: js, size: 2087) [annotate] [blame] [check-ins using] [more...]
To Artifact [8506d6db7e]:
- File
src/OFScrypt.h
— part of check-in
[3c88df0ce4]
at
2021-05-09 14:45:19
on branch amiga-library
— Merge trunk into branch "amiga-library"
All necessary changes to adjust for the changes made in trunk are
included in the merge commit. (user: js, size: 2097) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
66 67 68 69 70 71 72 |
size_t blockSize);
extern void OFScryptROMix(uint32_t *buffer, size_t blockSize,
size_t costFactor, uint32_t *tmp);
/**
* @brief Derives a key from a password and a salt using scrypt.
*
| | | | 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
size_t blockSize);
extern void OFScryptROMix(uint32_t *buffer, size_t blockSize,
size_t costFactor, uint32_t *tmp);
/**
* @brief Derives a key from a password and a salt using scrypt.
*
* @param parameters The parameters to use
*/
extern void OFScrypt(OFScryptParameters parameters);
#ifdef __cplusplus
}
#endif
OF_ASSUME_NONNULL_END
|