Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • lib/md5.c

    re1c926f rbea1305  
    2424#include <sys/types.h>
    2525#include <string.h>             /* for memcpy() */
    26 #include <stdio.h>
    2726#include "md5.h"
    2827
     
    161160        memcpy(digest, ctx->buf, 16);
    162161        memset(ctx, 0, sizeof(ctx));    /* In case it's sensitive */
    163 }
    164 
    165 void md5_finish_ascii(struct MD5Context *context, char *ascii)
    166 {
    167         md5_byte_t bin[16];
    168         int i;
    169        
    170         md5_finish(context, bin);
    171         for (i = 0; i < 16; i ++)
    172                 sprintf(ascii + i * 2, "%02x", bin[i]);
    173162}
    174163
Note: See TracChangeset for help on using the changeset viewer.