2000-06-07 00:15:19 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2000 Internet Software Consortium.
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
2000-07-27 09:55:03 +00:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM
|
|
|
|
* DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
|
|
|
|
* INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
|
|
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
|
|
|
|
* FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
|
|
|
|
* NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
|
|
|
|
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
2000-06-07 00:15:19 +00:00
|
|
|
*/
|
|
|
|
|
2000-07-27 09:55:03 +00:00
|
|
|
/* $Id: hash_test.c,v 1.6 2000/07/27 09:37:58 tale Exp $ */
|
2000-06-23 16:19:01 +00:00
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2000-07-17 17:33:39 +00:00
|
|
|
#include <string.h>
|
2000-06-22 22:00:42 +00:00
|
|
|
|
2000-07-17 17:33:39 +00:00
|
|
|
#include <isc/hmacmd5.h>
|
2000-06-07 00:48:42 +00:00
|
|
|
#include <isc/md5.h>
|
2000-06-07 00:15:19 +00:00
|
|
|
#include <isc/sha1.h>
|
|
|
|
#include <isc/util.h>
|
2000-06-07 02:21:39 +00:00
|
|
|
#include <isc/string.h>
|
2000-06-07 00:15:19 +00:00
|
|
|
|
|
|
|
static void
|
2000-06-07 00:48:42 +00:00
|
|
|
print_digest(char *s, const char *hash, unsigned char *d,
|
|
|
|
unsigned int words)
|
|
|
|
{
|
|
|
|
unsigned int i, j;
|
2000-06-07 00:15:19 +00:00
|
|
|
|
2000-06-07 00:48:42 +00:00
|
|
|
printf("hash (%s) %s:\n\t", hash, s);
|
|
|
|
for (i = 0 ; i < words ; i++) {
|
2000-06-07 00:15:19 +00:00
|
|
|
printf(" ");
|
|
|
|
for (j = 0 ; j < 4 ; j++)
|
|
|
|
printf("%02x", d[i * 4 + j]);
|
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char **argv) {
|
|
|
|
isc_sha1_t sha1;
|
2000-06-07 00:48:42 +00:00
|
|
|
isc_md5_t md5;
|
2000-07-17 17:33:39 +00:00
|
|
|
isc_hmacmd5_t hmacmd5;
|
2000-06-07 00:15:19 +00:00
|
|
|
unsigned char digest[20];
|
|
|
|
unsigned char buffer[1024];
|
|
|
|
const unsigned char *s;
|
2000-07-17 17:33:39 +00:00
|
|
|
unsigned char key[20];
|
2000-06-07 00:15:19 +00:00
|
|
|
|
|
|
|
UNUSED(argc);
|
|
|
|
UNUSED(argv);
|
|
|
|
|
|
|
|
s = "abc";
|
|
|
|
isc_sha1_init(&sha1);
|
|
|
|
strcpy(buffer, s);
|
|
|
|
isc_sha1_update(&sha1, buffer, strlen(s));
|
|
|
|
isc_sha1_final(&sha1, digest);
|
2000-06-07 00:48:42 +00:00
|
|
|
print_digest(buffer, "sha1", digest, 5);
|
2000-06-07 00:15:19 +00:00
|
|
|
|
|
|
|
s = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq";
|
|
|
|
isc_sha1_init(&sha1);
|
|
|
|
strcpy(buffer, s);
|
|
|
|
isc_sha1_update(&sha1, buffer, strlen(s));
|
|
|
|
isc_sha1_final(&sha1, digest);
|
2000-06-07 00:48:42 +00:00
|
|
|
print_digest(buffer, "sha1", digest, 5);
|
|
|
|
|
|
|
|
s = "abc";
|
|
|
|
isc_md5_init(&md5);
|
|
|
|
strcpy(buffer, s);
|
|
|
|
isc_md5_update(&md5, buffer, strlen(s));
|
|
|
|
isc_md5_final(&md5, digest);
|
|
|
|
print_digest(buffer, "md5", digest, 4);
|
2000-06-07 00:15:19 +00:00
|
|
|
|
2000-07-17 17:33:39 +00:00
|
|
|
/*
|
|
|
|
* The 3 HMAC-MD5 examples from RFC 2104
|
|
|
|
*/
|
|
|
|
s = "Hi There";
|
|
|
|
memset(key, 0x0b, 16);
|
|
|
|
isc_hmacmd5_init(&hmacmd5, key, 16);
|
|
|
|
strcpy(buffer, s);
|
|
|
|
isc_hmacmd5_update(&hmacmd5, buffer, strlen(s));
|
|
|
|
isc_hmacmd5_sign(&hmacmd5, digest);
|
|
|
|
print_digest(buffer, "hmacmd5", digest, 4);
|
|
|
|
|
|
|
|
s = "what do ya want for nothing?";
|
|
|
|
strcpy(key, "Jefe");
|
|
|
|
isc_hmacmd5_init(&hmacmd5, key, 4);
|
|
|
|
strcpy(buffer, s);
|
|
|
|
isc_hmacmd5_update(&hmacmd5, buffer, strlen(s));
|
|
|
|
isc_hmacmd5_sign(&hmacmd5, digest);
|
|
|
|
print_digest(buffer, "hmacmd5", digest, 4);
|
|
|
|
|
|
|
|
s = "\335\335\335\335\335\335\335\335\335\335"
|
|
|
|
"\335\335\335\335\335\335\335\335\335\335"
|
|
|
|
"\335\335\335\335\335\335\335\335\335\335"
|
|
|
|
"\335\335\335\335\335\335\335\335\335\335"
|
|
|
|
"\335\335\335\335\335\335\335\335\335\335";
|
|
|
|
memset(key, 0xaa, 16);
|
|
|
|
isc_hmacmd5_init(&hmacmd5, key, 16);
|
|
|
|
strcpy(buffer, s);
|
|
|
|
isc_hmacmd5_update(&hmacmd5, buffer, strlen(s));
|
|
|
|
isc_hmacmd5_sign(&hmacmd5, digest);
|
|
|
|
print_digest(buffer, "hmacmd5", digest, 4);
|
|
|
|
|
2000-06-07 00:15:19 +00:00
|
|
|
return (0);
|
|
|
|
}
|