~ubuntu-branches/ubuntu/wily/dovecot/wily

« back to all changes in this revision

Viewing changes to src/lib/hash-format.h

  • Committer: Package Import Robot
  • Author(s): Jaldhar H. Vyas
  • Date: 2013-09-09 00:57:32 UTC
  • mfrom: (1.13.11)
  • mto: (4.8.5 experimental) (1.16.1)
  • mto: This revision was merged to the branch mainline in revision 97.
  • Revision ID: package-import@ubuntu.com-20130909005732-dn1eell8srqbhh0e
Tags: upstream-2.2.5
ImportĀ upstreamĀ versionĀ 2.2.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
/* Add more data to hash. */
12
12
void hash_format_loop(struct hash_format *format,
13
13
                      const void *data, size_t size);
 
14
/* Finish the hash and write it into given string. */
 
15
void hash_format_write(struct hash_format *format, string_t *dest);
 
16
/* Reset hash to initial state. */
 
17
void hash_format_reset(struct hash_format *format);
14
18
/* Write the hash into given string and free used memory. */
15
19
void hash_format_deinit(struct hash_format **format, string_t *dest);
16
20
/* Free used memory without writing to string. */