bb54e143 |
/* Copyright (C) 1990-2, RSA Data Security, Inc. Created 1990. All
rights reserved.
RSA Data Security, Inc. makes no representations concerning either
the merchantability of this software or the suitability of this
software for any particular purpose. It is provided "as is"
without express or implied warranty of any kind.
These notices must be retained in any copies of any part of this
documentation and/or software.
*/
/*
jku: added support to deal with vectors
*/
#define MD 5
#include <stdio.h>
#include <time.h>
#include <string.h>
#include "md5global.h"
#include "md5.h"
#include "md5utils.h"
#include "dprint.h"
|
dda9dab1 |
MDInit (&context);
for (i=0; i<size; i++) {
trim_len( len, s, src[i] );
/*
# ifdef EXTRA_DEBUG
fprintf(stderr, "EXTRA_DEBUG: %d. (%d) {", i+1, len);
sum=0;
for (j=0; j<len; j++) {
fprintf( stderr, "%c ", *(s+j));
sum+=*(s+j);
}
for (j=0; j<len; j++) {
fprintf( stderr, "%d ", *(s+j));
sum+=*(s+j);
}
fprintf(stderr, " [%d]\n", sum );
# endif
*/
MDUpdate (&context, s, len);
|