mirror of https://github.com/sipwise/kamailio.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
97 lines
1.7 KiB
97 lines
1.7 KiB
/* MDDRIVER.C - test driver for MD2, MD4 and MD5
|
|
*
|
|
*/
|
|
|
|
|
|
|
|
/* 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
|
|
|
|
*/
|
|
|
|
/*!
|
|
* \file
|
|
* \brief SIP-router core ::
|
|
* \ingroup core
|
|
* Module: \ref core
|
|
*/
|
|
|
|
#define MD 5
|
|
|
|
#include <stdio.h>
|
|
#include <time.h>
|
|
#include <string.h>
|
|
#include "md5global.h"
|
|
#include "md5.h"
|
|
#include "md5utils.h"
|
|
#include "dprint.h"
|
|
#include "ut.h"
|
|
|
|
|
|
/*static void MDString PROTO_LIST ((char *));*/
|
|
|
|
#define MD_CTX MD5_CTX
|
|
#define MDInit MD5Init
|
|
#define MDUpdate MD5Update
|
|
#define MDFinal MD5Final
|
|
|
|
|
|
/* Digests a string array and store the result in dst; assumes
|
|
32 bytes in dst
|
|
*/
|
|
void MD5StringArray (char *dst, str src[], int size)
|
|
{
|
|
MD_CTX context;
|
|
unsigned char digest[16];
|
|
int i;
|
|
int len;
|
|
char *s;
|
|
|
|
/*
|
|
# ifdef EXTRA_DEBUG
|
|
int j;
|
|
int sum;
|
|
#endif
|
|
*/
|
|
|
|
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
|
|
*/
|
|
if (len > 0)
|
|
MDUpdate (&context, s, len);
|
|
}
|
|
MDFinal (digest, &context);
|
|
|
|
string2hex(digest, 16, dst );
|
|
DBG("DEBUG: MD5 calculated: %.*s\n", MD5_LEN, dst );
|
|
|
|
}
|