/***********************************************************************
* *
* This software is part of the ast package *
* Copyright (c) 2003-2011 AT&T Intellectual Property *
* and is licensed under the *
* Eclipse Public License, Version 1.0 *
* by AT&T Intellectual Property *
* *
* A copy of the License is available at *
* (with md5 checksum b35adb5213ca9657e911e9befb180842) *
* *
* Information and Software Systems Research *
* AT&T Research *
* Florham Park NJ *
* *
* Phong Vo <kpv@research.att.com> *
* Glenn Fowler <gsf@research.att.com> *
* *
***********************************************************************/
#include "vctest.h"
#include "vccrypto.h"
/* hold test strings */
typedef struct _pair_s
} Pair_t;
{ { "0123456789", "781E5E245D69B566979B86E28D23F2C7" },
{ "abcdefghij", "A925576942E94B2EF57A066101B48876" },
{ 0, 0 }
};
int main()
{
ssize_t k, n;
terror("Initializing md5 handle");
terror("Encoding data");
if(n != 16)
terror("Bad md5 digest length");
terror("Bad md5 hex coding length");
terror("Bad md5 digest");
}
exit(0);
}