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

« back to all changes in this revision

Viewing changes to src/lib/md4.c

  • 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:
62
62
 * This processes one or more 64-byte data blocks, but does NOT update
63
63
 * the bit counters.  There're no alignment requirements.
64
64
 */
65
 
static const void *body(struct md4_context *ctx, const void *data, size_t size)
 
65
static const void * ATTR_NOWARN_UNUSED_RESULT
 
66
body(struct md4_context *ctx, const void *data, size_t size)
66
67
{
67
68
        const unsigned char *ptr;
68
69
        uint32_t a, b, c, d;