~aleksey14/rhash/master

« back to all changes in this revision

Viewing changes to librhash/rhash.h

  • Committer: Aleksey
  • Date: 2021-07-18 22:59:53 UTC
  • Revision ID: git-v1:33f5f3a6be278621a26db4548d50e884b86d688e
refactoring: polish javadoc comments

Show diffs side-by-side

added added

removed removed

Lines of Context:
152
152
 * Allocate and initialize RHash context for calculating message digests.
153
153
 * The context after usage must be freed by calling rhash_free().
154
154
 *
155
 
 * @param hash_id union of bit-flags, containing ids of hash functions to calculate.
 
155
 * @param hash_id union of bit-flags, containing ids of hash functions to calculate
156
156
 * @return initialized rhash context, NULL on error and errno is set
157
157
 */
158
158
RHASH_API rhash rhash_init(unsigned hash_id);
201
201
/**
202
202
 * Free RHash context memory.
203
203
 *
204
 
 * @param ctx the context to free.
 
204
 * @param ctx the context to free
205
205
 */
206
206
RHASH_API void rhash_free(rhash ctx);
207
207