hmacmd5.c revision c40906dfad6dd6e3a3e3c94b8c8847bc9bc064e5
/*
* Copyright (C) 2000, 2001, 2004-2007, 2009, 2013-2016 Internet Systems Consortium, Inc. ("ISC")
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
/* $Id: hmacmd5.c,v 1.16 2009/02/06 23:47:42 tbox Exp $ */
/*! \file
* This code implements the HMAC-MD5 keyed hash algorithm
* described in RFC2104.
*/
#include "config.h"
#ifndef PK11_MD5_DISABLE
#include <isc/assertions.h>
#include <isc/platform.h>
#if PKCS11CRYPTO
#include <pk11/internal.h>
#endif
#ifdef ISC_PLATFORM_OPENSSLHASH
void
unsigned int len)
{
#ifdef HMAC_RETURN_INT
#else
#endif
}
void
}
void
unsigned int len)
{
#ifdef HMAC_RETURN_INT
#else
#endif
}
void
#ifdef HMAC_RETURN_INT
#else
#endif
}
#ifndef PK11_MD5_HMAC_REPLACE
void
unsigned int len)
{
{
};
}
void
return;
}
void
unsigned int len)
{
}
void
}
#else
/* Replace missing CKM_MD5_HMAC PKCS#11 mechanism */
#define PADLEN 64
#define IPAD 0x36
#define OPAD 0x5C
void
unsigned int len)
{
unsigned int i;
} else
for (i = 0; i < PADLEN; i++)
}
void
}
void
unsigned int len)
{
}
void
unsigned int i;
(CK_ULONG_PTR) &len));
for (i = 0; i < PADLEN; i++)
(CK_ULONG_PTR) &len));
}
#endif
#else
#define PADLEN 64
#define IPAD 0x36
#define OPAD 0x5C
/*!
* Start HMAC-MD5 process. Initialize an md5 context and digest the key.
*/
void
unsigned int len)
{
int i;
} else
for (i = 0; i < PADLEN; i++)
}
void
}
/*!
* Update context to reflect the concatenation of another buffer full
* of bytes.
*/
void
unsigned int len)
{
}
/*!
* Compute signature - finalize MD5 operation and reapply MD5.
*/
void
int i;
for (i = 0; i < PADLEN; i++)
}
#endif /* !ISC_PLATFORM_OPENSSLHASH */
/*!
* Verify signature - finalize MD5 operation and reapply MD5, then
* compare to the supplied digest.
*/
}
unsigned char newdigest[ISC_MD5_DIGESTLENGTH];
}
#else /* !PK11_MD5_DISABLE */
#ifdef WIN32
/* Make the Visual Studio linker happy */
void isc_hmacmd5_init() { INSIST(0); }
void isc_hmacmd5_invalidate() { INSIST(0); }
void isc_hmacmd5_sign() { INSIST(0); }
void isc_hmacmd5_update() { INSIST(0); }
void isc_hmacmd5_verify() { INSIST(0); }
void isc_hmacmd5_verify2() { INSIST(0); }
#endif
#endif /* PK11_MD5_DISABLE */